Skip to content

Commit

Permalink
[wip]
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed Aug 25, 2022
1 parent 2682fd5 commit e3d520d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: bazel

on:
push:
Expand Down
3 changes: 2 additions & 1 deletion test/test_charconv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2267,9 +2267,10 @@ TEST_CASE_TEMPLATE("atof.hexa", T, float, double)

TEST_CASE_TEMPLATE("atof.infnan", T, float, double)
{
static_assert(std::numeric_limits<T>::has_quiet_NaN, "quiet indeed");
T nan = std::numeric_limits<T>::quiet_NaN();
T pinf = std::numeric_limits<T>::infinity();
T ninf = -std::numeric_limits<T>::infinity();
T nan = std::numeric_limits<T>::quiet_NaN();
T rval = {};
test_ator("infinity", pinf);
test_ator("inf", pinf);
Expand Down

0 comments on commit e3d520d

Please sign in to comment.