Browse Source

Fix the std::string error introduced in integration.

Jisi Liu 9 years ago
parent
commit
75e5898513
1 changed files with 1 additions and 1 deletions
  1. 1 1
      python/google/protobuf/pyext/message.h

+ 1 - 1
python/google/protobuf/pyext/message.h

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