Index: third_party/protobuf/src/google/protobuf/util/internal/type_info_test_helper.cc |
diff --git a/third_party/protobuf/src/google/protobuf/util/internal/type_info_test_helper.cc b/third_party/protobuf/src/google/protobuf/util/internal/type_info_test_helper.cc |
index 737ba9e47551ab76edf768c5123df9d4a80b33cd..49e18ed0ffec0c9a92daf7e64f3c2b4e2c165504 100644 |
--- a/third_party/protobuf/src/google/protobuf/util/internal/type_info_test_helper.cc |
+++ b/third_party/protobuf/src/google/protobuf/util/internal/type_info_test_helper.cc |
@@ -55,7 +55,7 @@ namespace testing { |
void TypeInfoTestHelper::ResetTypeInfo( |
- const std::vector<const Descriptor*>& descriptors) { |
+ const vector<const Descriptor*>& descriptors) { |
switch (type_) { |
case USE_TYPE_RESOLVER: { |
const DescriptorPool* pool = descriptors[0]->file()->pool(); |
@@ -73,14 +73,14 @@ void TypeInfoTestHelper::ResetTypeInfo( |
} |
void TypeInfoTestHelper::ResetTypeInfo(const Descriptor* descriptor) { |
- std::vector<const Descriptor*> descriptors; |
+ vector<const Descriptor*> descriptors; |
descriptors.push_back(descriptor); |
ResetTypeInfo(descriptors); |
} |
void TypeInfoTestHelper::ResetTypeInfo(const Descriptor* descriptor1, |
const Descriptor* descriptor2) { |
- std::vector<const Descriptor*> descriptors; |
+ vector<const Descriptor*> descriptors; |
descriptors.push_back(descriptor1); |
descriptors.push_back(descriptor2); |
ResetTypeInfo(descriptors); |