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
b9f405ae
Commit
b9f405ae
authored
Sep 19, 2019
by
Christian Maurer
Committed by
Adam Cozzette
Sep 20, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused-parameter warning
parent
4702ba90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
descriptor_database.h
src/google/protobuf/descriptor_database.h
+1
-1
bytestream.h
src/google/protobuf/stubs/bytestream.h
+1
-1
No files found.
src/google/protobuf/descriptor_database.h
View file @
b9f405ae
...
...
@@ -116,7 +116,7 @@ class PROTOBUF_EXPORT DescriptorDatabase {
//
// This method has a default implementation that always returns
// false.
virtual
bool
FindAllFileNames
(
std
::
vector
<
std
::
string
>*
output
)
{
virtual
bool
FindAllFileNames
(
std
::
vector
<
std
::
string
>*
/*output*/
)
{
return
false
;
}
...
...
src/google/protobuf/stubs/bytestream.h
View file @
b9f405ae
...
...
@@ -274,7 +274,7 @@ class PROTOBUF_EXPORT StringByteSink : public ByteSink {
class
PROTOBUF_EXPORT
NullByteSink
:
public
ByteSink
{
public
:
NullByteSink
()
{}
virtual
void
Append
(
const
char
*
data
,
size_t
n
)
override
{}
virtual
void
Append
(
const
char
*
/*data*/
,
size_t
/*n*/
)
override
{}
private
:
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS
(
NullByteSink
);
...
...
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