Skip to content

Commit

Permalink
Explicit curly bracket where suggested
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Lemire <[email protected]>
  • Loading branch information
mayawarrier and lemire authored Dec 14, 2023
1 parent a59a62c commit 882a716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fast_float/ascii_number.h
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ from_chars_result_t<UC> parse_int_string(UC const* p, UC const* pend, T& value,
#pragma warning(pop)
#endif
}
else value = T(i);
else { value = T(i); }

answer.ec = std::errc();
return answer;
Expand Down

0 comments on commit 882a716

Please sign in to comment.