summaryrefslogtreecommitdiff
path: root/upb/google/bridge.cc
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2013-05-11 17:56:13 -0700
committerJoshua Haberman <jhaberman@gmail.com>2013-05-11 17:56:13 -0700
commit70293f5faabe08fc9bdef26ad0b1d6afe19e8f79 (patch)
tree7637c83b45a4b1334ccec34462d4b80f1e39bcc9 /upb/google/bridge.cc
parentcfdb9907cb87d15eaab72ceefbfa42fd7a4c3127 (diff)
Open source fixes: builds on OS X again.
Diffstat (limited to 'upb/google/bridge.cc')
-rw-r--r--upb/google/bridge.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/upb/google/bridge.cc b/upb/google/bridge.cc
index f5b664c..93e5c27 100644
--- a/upb/google/bridge.cc
+++ b/upb/google/bridge.cc
@@ -208,7 +208,7 @@ static upb::MessageDef* NewMessageDef(const goog::Message& m, const void* owner,
// Must do this before processing submessages to prevent infinite recursion.
defs->AddMessage(&m, md);
- vector<const goog::FieldDescriptor*> fields;
+ std::vector<const goog::FieldDescriptor*> fields;
d->file()->pool()->FindAllExtensions(d, &fields);
for (int i = 0; i < d->field_count(); i++) {
fields.push_back(d->field(i));
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback