aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/google/protobuf/pyext/extension_dict.h
diff options
context:
space:
mode:
authorGravatar Jisi Liu <jisi.liu@gmail.com>2016-05-05 16:34:42 -0700
committerGravatar Jisi Liu <jisi.liu@gmail.com>2016-05-05 16:34:42 -0700
commitf8a5c5f74650630a269951322a8afb915e7c9c3d (patch)
treefcc6ec01ec916ff8e0ef291c19034d2703356d1d /python/google/protobuf/pyext/extension_dict.h
parent75e5898513d480c920486975389728dad3d158d6 (diff)
Fix using std::shared_ptr
Diffstat (limited to 'python/google/protobuf/pyext/extension_dict.h')
-rw-r--r--python/google/protobuf/pyext/extension_dict.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/google/protobuf/pyext/extension_dict.h b/python/google/protobuf/pyext/extension_dict.h
index 049d2e45..2456eda1 100644
--- a/python/google/protobuf/pyext/extension_dict.h
+++ b/python/google/protobuf/pyext/extension_dict.h
@@ -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