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
381d8f85
Commit
381d8f85
authored
Oct 26, 2016
by
Milo Yip
Committed by
GitHub
Oct 26, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #782 from miloyip/issue781_aix
Remove empty NumberStream::~NumberStream()
parents
d6c8b378
d7dd4106
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
reader.h
include/rapidjson/reader.h
+0
-3
No files found.
include/rapidjson/reader.h
View file @
381d8f85
...
@@ -1061,7 +1061,6 @@ private:
...
@@ -1061,7 +1061,6 @@ private:
typedef
typename
InputStream
::
Ch
Ch
;
typedef
typename
InputStream
::
Ch
Ch
;
NumberStream
(
GenericReader
&
reader
,
InputStream
&
s
)
:
is
(
s
)
{
(
void
)
reader
;
}
NumberStream
(
GenericReader
&
reader
,
InputStream
&
s
)
:
is
(
s
)
{
(
void
)
reader
;
}
~
NumberStream
()
{}
RAPIDJSON_FORCEINLINE
Ch
Peek
()
const
{
return
is
.
Peek
();
}
RAPIDJSON_FORCEINLINE
Ch
Peek
()
const
{
return
is
.
Peek
();
}
RAPIDJSON_FORCEINLINE
Ch
TakePush
()
{
return
is
.
Take
();
}
RAPIDJSON_FORCEINLINE
Ch
TakePush
()
{
return
is
.
Take
();
}
...
@@ -1083,7 +1082,6 @@ private:
...
@@ -1083,7 +1082,6 @@ private:
typedef
NumberStream
<
InputStream
,
false
,
false
>
Base
;
typedef
NumberStream
<
InputStream
,
false
,
false
>
Base
;
public
:
public
:
NumberStream
(
GenericReader
&
reader
,
InputStream
&
is
)
:
Base
(
reader
,
is
),
stackStream
(
reader
.
stack_
)
{}
NumberStream
(
GenericReader
&
reader
,
InputStream
&
is
)
:
Base
(
reader
,
is
),
stackStream
(
reader
.
stack_
)
{}
~
NumberStream
()
{}
RAPIDJSON_FORCEINLINE
Ch
TakePush
()
{
RAPIDJSON_FORCEINLINE
Ch
TakePush
()
{
stackStream
.
Put
(
static_cast
<
char
>
(
Base
::
is
.
Peek
()));
stackStream
.
Put
(
static_cast
<
char
>
(
Base
::
is
.
Peek
()));
...
@@ -1110,7 +1108,6 @@ private:
...
@@ -1110,7 +1108,6 @@ private:
typedef
NumberStream
<
InputStream
,
true
,
false
>
Base
;
typedef
NumberStream
<
InputStream
,
true
,
false
>
Base
;
public
:
public
:
NumberStream
(
GenericReader
&
reader
,
InputStream
&
is
)
:
Base
(
reader
,
is
)
{}
NumberStream
(
GenericReader
&
reader
,
InputStream
&
is
)
:
Base
(
reader
,
is
)
{}
~
NumberStream
()
{}
RAPIDJSON_FORCEINLINE
Ch
Take
()
{
return
Base
::
TakePush
();
}
RAPIDJSON_FORCEINLINE
Ch
Take
()
{
return
Base
::
TakePush
();
}
};
};
...
...
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