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
20181f6a
Commit
20181f6a
authored
Mar 20, 2017
by
Adam Cozzette
Committed by
GitHub
Mar 20, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2854 from hesmar/attributesFix
fix attributes warning
parents
4d273f28
b4b855cd
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
cpp_message.cc
src/google/protobuf/compiler/cpp/cpp_message.cc
+2
-2
plugin.pb.h
src/google/protobuf/compiler/plugin.pb.h
+4
-4
descriptor.pb.h
src/google/protobuf/descriptor.pb.h
+0
-0
No files found.
src/google/protobuf/compiler/cpp/cpp_message.cc
View file @
20181f6a
...
...
@@ -1462,9 +1462,9 @@ GenerateClassDefinition(io::Printer* printer) {
// Some InitDefault and Shutdown are defined as static member functions of
// TableStruct such that they are also allowed to access private members.
printer
->
Print
(
"friend struct $
dllexport_decl$ $
file_namespace$::TableStruct;
\n
"
,
"friend struct $file_namespace$::TableStruct;
\n
"
,
// Vars.
"
dllexport_decl"
,
options_
.
dllexport_decl
,
"
file_namespace"
,
"file_namespace"
,
FileLevelNamespace
(
descriptor_
->
file
()
->
name
()));
printer
->
Outdent
();
...
...
src/google/protobuf/compiler/plugin.pb.h
View file @
20181f6a
...
...
@@ -276,7 +276,7 @@ class LIBPROTOC_EXPORT Version : public ::google::protobuf::Message /* @@protoc_
::
google
::
protobuf
::
int32
major_
;
::
google
::
protobuf
::
int32
minor_
;
::
google
::
protobuf
::
int32
patch_
;
friend
struct
LIBPROTOC_EXPORT
protobuf_google_2fprotobuf_2fcompiler_2fplugin_2eproto
::
TableStruct
;
friend
struct
protobuf_google_2fprotobuf_2fcompiler_2fplugin_2eproto
::
TableStruct
;
};
// -------------------------------------------------------------------
...
...
@@ -427,7 +427,7 @@ class LIBPROTOC_EXPORT CodeGeneratorRequest : public ::google::protobuf::Message
::
google
::
protobuf
::
RepeatedPtrField
<
::
google
::
protobuf
::
FileDescriptorProto
>
proto_file_
;
::
google
::
protobuf
::
internal
::
ArenaStringPtr
parameter_
;
::
google
::
protobuf
::
compiler
::
Version
*
compiler_version_
;
friend
struct
LIBPROTOC_EXPORT
protobuf_google_2fprotobuf_2fcompiler_2fplugin_2eproto
::
TableStruct
;
friend
struct
protobuf_google_2fprotobuf_2fcompiler_2fplugin_2eproto
::
TableStruct
;
};
// -------------------------------------------------------------------
...
...
@@ -566,7 +566,7 @@ class LIBPROTOC_EXPORT CodeGeneratorResponse_File : public ::google::protobuf::M
::
google
::
protobuf
::
internal
::
ArenaStringPtr
name_
;
::
google
::
protobuf
::
internal
::
ArenaStringPtr
insertion_point_
;
::
google
::
protobuf
::
internal
::
ArenaStringPtr
content_
;
friend
struct
LIBPROTOC_EXPORT
protobuf_google_2fprotobuf_2fcompiler_2fplugin_2eproto
::
TableStruct
;
friend
struct
protobuf_google_2fprotobuf_2fcompiler_2fplugin_2eproto
::
TableStruct
;
};
// -------------------------------------------------------------------
...
...
@@ -684,7 +684,7 @@ class LIBPROTOC_EXPORT CodeGeneratorResponse : public ::google::protobuf::Messag
mutable
int
_cached_size_
;
::
google
::
protobuf
::
RepeatedPtrField
<
::
google
::
protobuf
::
compiler
::
CodeGeneratorResponse_File
>
file_
;
::
google
::
protobuf
::
internal
::
ArenaStringPtr
error_
;
friend
struct
LIBPROTOC_EXPORT
protobuf_google_2fprotobuf_2fcompiler_2fplugin_2eproto
::
TableStruct
;
friend
struct
protobuf_google_2fprotobuf_2fcompiler_2fplugin_2eproto
::
TableStruct
;
};
// ===================================================================
...
...
src/google/protobuf/descriptor.pb.h
View file @
20181f6a
This diff is collapsed.
Click to expand it.
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