Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
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
protobuf
Commits
ec71d5d3
Commit
ec71d5d3
authored
Nov 01, 2014
by
Austin Schuh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed Unused Parameter warning in compiler headers.
parent
918e3ee8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
cpp_field.h
src/google/protobuf/compiler/cpp/cpp_field.h
+6
-5
No files found.
src/google/protobuf/compiler/cpp/cpp_field.h
View file @
ec71d5d3
...
...
@@ -77,7 +77,7 @@ class FieldGenerator {
// Generate static default variable for this field. These are placed inside
// the message class. Most field types don't need this, so the default
// implementation is empty.
virtual
void
GenerateStaticMembers
(
io
::
Printer
*
printer
)
const
{}
virtual
void
GenerateStaticMembers
(
io
::
Printer
*
/*printer*/
)
const
{}
// Generate prototypes for all of the accessor functions related to this
// field. These are placed inside the class definition.
...
...
@@ -92,7 +92,7 @@ class FieldGenerator {
// placed somewhere in the .cc file.
// Most field types don't need this, so the default implementation is empty.
virtual
void
GenerateNonInlineAccessorDefinitions
(
io
::
Printer
*
printer
)
const
{}
io
::
Printer
*
/*printer*/
)
const
{}
// Generate lines of code (statements, not declarations) which clear the
// field. This is used to define the clear_$name$() method as well as
...
...
@@ -122,14 +122,15 @@ class FieldGenerator {
// Generate any code that needs to go in the class's SharedDtor() method,
// invoked by the destructor.
// Most field types don't need this, so the default implementation is empty.
virtual
void
GenerateDestructorCode
(
io
::
Printer
*
printer
)
const
{}
virtual
void
GenerateDestructorCode
(
io
::
Printer
*
/*printer*/
)
const
{}
// Generate code that allocates the fields's default instance.
virtual
void
GenerateDefaultInstanceAllocator
(
io
::
Printer
*
printer
)
const
{}
virtual
void
GenerateDefaultInstanceAllocator
(
io
::
Printer
*
/*printer*/
)
const
{}
// Generate code that should be run when ShutdownProtobufLibrary() is called,
// to delete all dynamically-allocated objects.
virtual
void
GenerateShutdownCode
(
io
::
Printer
*
printer
)
const
{}
virtual
void
GenerateShutdownCode
(
io
::
Printer
*
/*printer*/
)
const
{}
// Generate lines to decode this field, which will be placed inside the
// message's MergeFromCodedStream() method.
...
...
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