Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
635b9a0a
Unverified
Commit
635b9a0a
authored
Jun 24, 2020
by
Niels Lohmann
Committed by
GitHub
Jun 24, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2193 from dota17/issue#2059
Fix consistency in function `int_to_string()`
parents
8575fdf9
0ecf2974
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
iteration_proxy.hpp
include/nlohmann/detail/iterators/iteration_proxy.hpp
+3
-1
json.hpp
single_include/nlohmann/json.hpp
+3
-1
No files found.
include/nlohmann/detail/iterators/iteration_proxy.hpp
View file @
635b9a0a
...
@@ -15,7 +15,9 @@ namespace detail
...
@@ -15,7 +15,9 @@ namespace detail
template
<
typename
string_type
>
template
<
typename
string_type
>
void
int_to_string
(
string_type
&
target
,
std
::
size_t
value
)
void
int_to_string
(
string_type
&
target
,
std
::
size_t
value
)
{
{
target
=
std
::
to_string
(
value
);
// For ADL
using
std
::
to_string
;
target
=
to_string
(
value
);
}
}
template
<
typename
IteratorType
>
class
iteration_proxy_value
template
<
typename
IteratorType
>
class
iteration_proxy_value
{
{
...
...
single_include/nlohmann/json.hpp
View file @
635b9a0a
...
@@ -3657,7 +3657,9 @@ namespace detail
...
@@ -3657,7 +3657,9 @@ namespace detail
template
<
typename
string_type
>
template
<
typename
string_type
>
void
int_to_string
(
string_type
&
target
,
std
::
size_t
value
)
void
int_to_string
(
string_type
&
target
,
std
::
size_t
value
)
{
{
target
=
std
::
to_string
(
value
);
// For ADL
using
std
::
to_string
;
target
=
to_string
(
value
);
}
}
template
<
typename
IteratorType
>
class
iteration_proxy_value
template
<
typename
IteratorType
>
class
iteration_proxy_value
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment