We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8575fdf + 0ecf297 commit 635b9a0Copy full SHA for 635b9a0
2 files changed
include/nlohmann/detail/iterators/iteration_proxy.hpp
@@ -15,7 +15,9 @@ namespace detail
15
template<typename string_type>
16
void int_to_string( string_type& target, std::size_t value )
17
{
18
- target = std::to_string(value);
+ // For ADL
19
+ using std::to_string;
20
+ target = to_string(value);
21
}
22
template <typename IteratorType> class iteration_proxy_value
23
single_include/nlohmann/json.hpp
@@ -3657,7 +3657,9 @@ namespace detail
3657
3658
3659
3660
3661
3662
3663
3664
3665
0 commit comments