diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-10-21 12:49:43 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-10-21 12:49:43 -0500 |
commit | b2dbcb55e2832c373fecb4033a3ed77e5dbc77aa (patch) | |
tree | 1f294fcf1d85a02db86de3eea2b03393fd89ca5a /source/fud_string_view.cpp | |
parent | 6a27a2a4032e88fa9154ef0f0741edc584f7a701 (diff) |
Add vector and option.
Diffstat (limited to 'source/fud_string_view.cpp')
-rw-r--r-- | source/fud_string_view.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fud_string_view.cpp b/source/fud_string_view.cpp index fdb63b3..1cc73a6 100644 --- a/source/fud_string_view.cpp +++ b/source/fud_string_view.cpp @@ -1066,7 +1066,7 @@ FudStatus stringViewToFloat(StringView input, T& number, size_t& index) if (std::isinf(num) || std::isnan(num)) // isnan is dubious here - likely unreachable { - return ExtRangeError; + return FudStatus::RangeError; } return retSuccess(); |