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
9d0f5605
Commit
9d0f5605
authored
May 06, 2016
by
Jisi Liu
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1494 from pherl/master
Fix the std::string error introduced in integration.
parents
76a96d46
f8a5c5f7
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
extension_dict.h
python/google/protobuf/pyext/extension_dict.h
+1
-1
map_container.h
python/google/protobuf/pyext/map_container.h
+1
-1
message.h
python/google/protobuf/pyext/message.h
+2
-2
repeated_composite_container.h
python/google/protobuf/pyext/repeated_composite_container.h
+1
-1
repeated_scalar_container.h
python/google/protobuf/pyext/repeated_scalar_container.h
+1
-1
No files found.
python/google/protobuf/pyext/extension_dict.h
View file @
9d0f5605
...
...
@@ -48,7 +48,7 @@ class Message;
class
FieldDescriptor
;
#ifdef _SHARED_PTR_H
using
shared_ptr
;
using
s
td
::
s
hared_ptr
;
#else
using
internal
::
shared_ptr
;
#endif
...
...
python/google/protobuf/pyext/map_container.h
View file @
9d0f5605
...
...
@@ -47,7 +47,7 @@ namespace protobuf {
class
Message
;
#ifdef _SHARED_PTR_H
using
shared_ptr
;
using
s
td
::
s
hared_ptr
;
#else
using
internal
::
shared_ptr
;
#endif
...
...
python/google/protobuf/pyext/message.h
View file @
9d0f5605
...
...
@@ -53,8 +53,8 @@ class DescriptorPool;
class
MessageFactory
;
#ifdef _SHARED_PTR_H
using
shared_ptr
;
using
std
::
std
::
string
;
using
s
td
::
s
hared_ptr
;
using
::
std
::
string
;
#else
using
internal
::
shared_ptr
;
#endif
...
...
python/google/protobuf/pyext/repeated_composite_container.h
View file @
9d0f5605
...
...
@@ -50,7 +50,7 @@ class FieldDescriptor;
class
Message
;
#ifdef _SHARED_PTR_H
using
shared_ptr
;
using
s
td
::
s
hared_ptr
;
#else
using
internal
::
shared_ptr
;
#endif
...
...
python/google/protobuf/pyext/repeated_scalar_container.h
View file @
9d0f5605
...
...
@@ -49,7 +49,7 @@ namespace protobuf {
class
Message
;
#ifdef _SHARED_PTR_H
using
shared_ptr
;
using
s
td
::
s
hared_ptr
;
#else
using
internal
::
shared_ptr
;
#endif
...
...
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