Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
790e7ca9
Commit
790e7ca9
authored
May 30, 2017
by
HenryLee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add struct keyword in front of internal_iterator
parent
ce39330f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/json.hpp
src/json.hpp
+5
-5
No files found.
src/json.hpp
View file @
790e7ca9
...
@@ -8089,8 +8089,8 @@ class basic_json
...
@@ -8089,8 +8089,8 @@ class basic_json
iter_impl
&
operator
=
(
iter_impl
<
basic_json
>
other
)
noexcept
(
iter_impl
&
operator
=
(
iter_impl
<
basic_json
>
other
)
noexcept
(
std
::
is_nothrow_move_constructible
<
pointer
>::
value
and
std
::
is_nothrow_move_constructible
<
pointer
>::
value
and
std
::
is_nothrow_move_assignable
<
pointer
>::
value
and
std
::
is_nothrow_move_assignable
<
pointer
>::
value
and
std
::
is_nothrow_move_constructible
<
internal_iterator
>::
value
and
std
::
is_nothrow_move_constructible
<
struct
internal_iterator
>::
value
and
std
::
is_nothrow_move_assignable
<
internal_iterator
>::
value
std
::
is_nothrow_move_assignable
<
struct
internal_iterator
>::
value
)
)
{
{
std
::
swap
(
m_object
,
other
.
m_object
);
std
::
swap
(
m_object
,
other
.
m_object
);
...
@@ -8107,8 +8107,8 @@ class basic_json
...
@@ -8107,8 +8107,8 @@ class basic_json
iter_impl
<
const
basic_json
>&
operator
=
(
iter_impl
<
const
basic_json
>
other
)
noexcept
(
iter_impl
<
const
basic_json
>&
operator
=
(
iter_impl
<
const
basic_json
>
other
)
noexcept
(
std
::
is_nothrow_move_constructible
<
pointer
>::
value
and
std
::
is_nothrow_move_constructible
<
pointer
>::
value
and
std
::
is_nothrow_move_assignable
<
pointer
>::
value
and
std
::
is_nothrow_move_assignable
<
pointer
>::
value
and
std
::
is_nothrow_move_constructible
<
internal_iterator
>::
value
and
std
::
is_nothrow_move_constructible
<
struct
internal_iterator
>::
value
and
std
::
is_nothrow_move_assignable
<
internal_iterator
>::
value
std
::
is_nothrow_move_assignable
<
struct
internal_iterator
>::
value
)
)
{
{
std
::
swap
(
m_object
,
other
.
m_object
);
std
::
swap
(
m_object
,
other
.
m_object
);
...
@@ -8601,7 +8601,7 @@ class basic_json
...
@@ -8601,7 +8601,7 @@ class basic_json
/// associated JSON instance
/// associated JSON instance
pointer
m_object
=
nullptr
;
pointer
m_object
=
nullptr
;
/// the actual iterator of the associated instance
/// the actual iterator of the associated instance
internal_iterator
m_it
=
internal_iterator
();
struct
internal_iterator
m_it
=
internal_iterator
();
};
};
/*!
/*!
...
...
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