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
331009a3
Commit
331009a3
authored
Apr 13, 2015
by
miloyip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix gcc warning
parent
7e1a6a1b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
readertest.cpp
test/unittest/readertest.cpp
+3
-3
No files found.
test/unittest/readertest.cpp
View file @
331009a3
...
@@ -1196,10 +1196,10 @@ struct TerminateHandler {
...
@@ -1196,10 +1196,10 @@ struct TerminateHandler {
bool
Double
(
double
)
{
return
e
!=
6
;
}
bool
Double
(
double
)
{
return
e
!=
6
;
}
bool
String
(
const
char
*
,
SizeType
,
bool
)
{
return
e
!=
7
;
}
bool
String
(
const
char
*
,
SizeType
,
bool
)
{
return
e
!=
7
;
}
bool
StartObject
()
{
return
e
!=
8
;
}
bool
StartObject
()
{
return
e
!=
8
;
}
bool
Key
(
const
char
*
str
,
SizeType
length
,
bool
copy
)
{
return
e
!=
9
;
}
bool
Key
(
const
char
*
,
SizeType
,
bool
)
{
return
e
!=
9
;
}
bool
EndObject
(
SizeType
memberCount
)
{
return
e
!=
10
;
}
bool
EndObject
(
SizeType
)
{
return
e
!=
10
;
}
bool
StartArray
()
{
return
e
!=
11
;
}
bool
StartArray
()
{
return
e
!=
11
;
}
bool
EndArray
(
SizeType
elementCount
)
{
return
e
!=
12
;
}
bool
EndArray
(
SizeType
)
{
return
e
!=
12
;
}
};
};
#define TEST_TERMINATION(e, json)\
#define TEST_TERMINATION(e, json)\
...
...
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