Fix using std::shared_ptr

This commit is contained in:
Jisi Liu 2016-05-05 16:34:42 -07:00
parent 75e5898513
commit f8a5c5f746
5 changed files with 5 additions and 5 deletions

View file

@ -48,7 +48,7 @@ class Message;
class FieldDescriptor;
#ifdef _SHARED_PTR_H
using shared_ptr;
using std::shared_ptr;
#else
using internal::shared_ptr;
#endif

View file

@ -47,7 +47,7 @@ namespace protobuf {
class Message;
#ifdef _SHARED_PTR_H
using shared_ptr;
using std::shared_ptr;
#else
using internal::shared_ptr;
#endif

View file

@ -53,7 +53,7 @@ class DescriptorPool;
class MessageFactory;
#ifdef _SHARED_PTR_H
using shared_ptr;
using std::shared_ptr;
using ::std::string;
#else
using internal::shared_ptr;

View file

@ -50,7 +50,7 @@ class FieldDescriptor;
class Message;
#ifdef _SHARED_PTR_H
using shared_ptr;
using std::shared_ptr;
#else
using internal::shared_ptr;
#endif

View file

@ -49,7 +49,7 @@ namespace protobuf {
class Message;
#ifdef _SHARED_PTR_H
using shared_ptr;
using std::shared_ptr;
#else
using internal::shared_ptr;
#endif