Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
R
rapidjson
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
rapidjson
Commits
8c79fb65
Commit
8c79fb65
authored
Feb 17, 2016
by
Milo Yip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix return type of GenericObject::AddMember()
parent
4ababca8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
document.h
include/rapidjson/document.h
+11
-11
No files found.
include/rapidjson/document.h
View file @
8c79fb65
...
...
@@ -2432,21 +2432,21 @@ public:
#if RAPIDJSON_HAS_STDSTRING
MemberIterator
FindMember
(
const
std
::
basic_string
<
Ch
>&
name
)
const
{
return
ptr_
->
FindMember
(
name
);
}
#endif
ValueType
&
AddMember
(
ValueType
&
name
,
ValueType
&
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
ValueType
&
AddMember
(
ValueType
&
name
,
StringRefType
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
const
GenericObject
&
AddMember
(
ValueType
&
name
,
ValueType
&
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
const
GenericObject
&
AddMember
(
ValueType
&
name
,
StringRefType
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
#if RAPIDJSON_HAS_STDSTRING
ValueType
&
AddMember
(
ValueType
&
name
,
std
::
basic_string
<
Ch
>&
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
const
GenericObject
&
AddMember
(
ValueType
&
name
,
std
::
basic_string
<
Ch
>&
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
#endif
template
<
typename
T
>
RAPIDJSON_DISABLEIF_RETURN
((
internal
::
OrExpr
<
internal
::
IsPointer
<
T
>
,
internal
::
IsGenericValue
<
T
>
>
),
(
ValueType
&
))
AddMember
(
ValueType
&
name
,
T
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
template
<
typename
T
>
RAPIDJSON_DISABLEIF_RETURN
((
internal
::
OrExpr
<
internal
::
IsPointer
<
T
>
,
internal
::
IsGenericValue
<
T
>
>
),
(
ValueType
&
))
AddMember
(
ValueType
&
name
,
T
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
#if RAPIDJSON_HAS_CXX11_RVALUE_REFS
ValueType
&
AddMember
(
ValueType
&&
name
,
ValueType
&&
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
ValueType
&
AddMember
(
ValueType
&&
name
,
ValueType
&
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
ValueType
&
AddMember
(
ValueType
&
name
,
ValueType
&&
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
ValueType
&
AddMember
(
StringRefType
name
,
ValueType
&&
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
const
GenericObject
&
AddMember
(
ValueType
&&
name
,
ValueType
&&
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
const
GenericObject
&
AddMember
(
ValueType
&&
name
,
ValueType
&
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
const
GenericObject
&
AddMember
(
ValueType
&
name
,
ValueType
&&
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
const
GenericObject
&
AddMember
(
StringRefType
name
,
ValueType
&&
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
#endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS
ValueType
&
AddMember
(
StringRefType
name
,
ValueType
&
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
ValueType
&
AddMember
(
StringRefType
name
,
StringRefType
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
template
<
typename
T
>
RAPIDJSON_DISABLEIF_RETURN
((
internal
::
OrExpr
<
internal
::
IsPointer
<
T
>
,
internal
::
IsGenericValue
<
T
>
>
),
(
ValueType
&
))
AddMember
(
StringRefType
name
,
T
value
,
AllocatorType
&
allocator
)
const
{
return
ptr_
->
AddMember
(
name
,
value
,
allocator
)
;
}
const
GenericObject
&
AddMember
(
StringRefType
name
,
ValueType
&
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
const
GenericObject
&
AddMember
(
StringRefType
name
,
StringRefType
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
template
<
typename
T
>
RAPIDJSON_DISABLEIF_RETURN
((
internal
::
OrExpr
<
internal
::
IsPointer
<
T
>
,
internal
::
IsGenericValue
<
T
>
>
),
(
const
GenericObject
&
))
AddMember
(
StringRefType
name
,
T
value
,
AllocatorType
&
allocator
)
const
{
ptr_
->
AddMember
(
name
,
value
,
allocator
);
return
*
this
;
}
void
RemoveAllMembers
()
{
return
ptr_
->
RemoveAllMembers
();
}
bool
RemoveMember
(
const
Ch
*
name
)
const
{
return
ptr_
->
RemoveMember
(
name
);
}
#if RAPIDJSON_HAS_STDSTRING
...
...
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