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
71cb7d12
Commit
71cb7d12
authored
Oct 23, 2020
by
Sergey Linev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change argument name "subtype" in byte_container_with_subtype
Fix warnings on older g++ 4.8 declaration of ‘subtype’ shadows a member of 'this'
parent
fd7a9f60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
byte_container_with_subtype.hpp
include/nlohmann/byte_container_with_subtype.hpp
+6
-6
No files found.
include/nlohmann/byte_container_with_subtype.hpp
View file @
71cb7d12
...
@@ -39,15 +39,15 @@ class byte_container_with_subtype : public BinaryType
...
@@ -39,15 +39,15 @@ class byte_container_with_subtype : public BinaryType
:
container_type
(
std
::
move
(
b
))
:
container_type
(
std
::
move
(
b
))
{}
{}
byte_container_with_subtype
(
const
container_type
&
b
,
std
::
uint8_t
subtype
)
noexcept
(
noexcept
(
container_type
(
b
)))
byte_container_with_subtype
(
const
container_type
&
b
,
std
::
uint8_t
_
subtype
)
noexcept
(
noexcept
(
container_type
(
b
)))
:
container_type
(
b
)
:
container_type
(
b
)
,
m_subtype
(
subtype
)
,
m_subtype
(
_
subtype
)
,
m_has_subtype
(
true
)
,
m_has_subtype
(
true
)
{}
{}
byte_container_with_subtype
(
container_type
&&
b
,
std
::
uint8_t
subtype
)
noexcept
(
noexcept
(
container_type
(
std
::
move
(
b
))))
byte_container_with_subtype
(
container_type
&&
b
,
std
::
uint8_t
_
subtype
)
noexcept
(
noexcept
(
container_type
(
std
::
move
(
b
))))
:
container_type
(
std
::
move
(
b
))
:
container_type
(
std
::
move
(
b
))
,
m_subtype
(
subtype
)
,
m_subtype
(
_
subtype
)
,
m_has_subtype
(
true
)
,
m_has_subtype
(
true
)
{}
{}
...
@@ -80,9 +80,9 @@ class byte_container_with_subtype : public BinaryType
...
@@ -80,9 +80,9 @@ class byte_container_with_subtype : public BinaryType
@since version 3.8.0
@since version 3.8.0
*/
*/
void
set_subtype
(
std
::
uint8_t
subtype
)
noexcept
void
set_subtype
(
std
::
uint8_t
_
subtype
)
noexcept
{
{
m_subtype
=
subtype
;
m_subtype
=
_
subtype
;
m_has_subtype
=
true
;
m_has_subtype
=
true
;
}
}
...
...
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