Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
flatbuffers
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
flatbuffers
Commits
11198f10
Commit
11198f10
authored
Mar 18, 2019
by
Wouter van Oortmerssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed shadowing warning in older gcc for vector_delimited
Change-Id: Ia4d56a5eb086f86eb5d1ad6ddae64e4a51bf3aa3
parent
3b23ff18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
minireflect.h
include/flatbuffers/minireflect.h
+2
-2
No files found.
include/flatbuffers/minireflect.h
View file @
11198f10
...
@@ -289,12 +289,12 @@ struct ToStringVisitor : public IterationVisitor {
...
@@ -289,12 +289,12 @@ struct ToStringVisitor : public IterationVisitor {
size_t
indent_level
;
size_t
indent_level
;
bool
vector_delimited
;
bool
vector_delimited
;
ToStringVisitor
(
std
::
string
delimiter
,
bool
quotes
,
std
::
string
indent
,
ToStringVisitor
(
std
::
string
delimiter
,
bool
quotes
,
std
::
string
indent
,
bool
v
ector_
delimited
=
true
)
bool
vdelimited
=
true
)
:
d
(
delimiter
),
:
d
(
delimiter
),
q
(
quotes
),
q
(
quotes
),
in
(
indent
),
in
(
indent
),
indent_level
(
0
),
indent_level
(
0
),
vector_delimited
(
v
ector_
delimited
)
{}
vector_delimited
(
vdelimited
)
{}
ToStringVisitor
(
std
::
string
delimiter
)
ToStringVisitor
(
std
::
string
delimiter
)
:
d
(
delimiter
),
:
d
(
delimiter
),
q
(
false
),
q
(
false
),
...
...
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