From e406747cd50270855c75902bb3a6de2e7659763d Mon Sep 17 00:00:00 2001 From: "xiaofeng@google.com" Date: Thu, 7 Feb 2013 07:00:07 +0000 Subject: Fix issue 445, issue 449 --- src/google/protobuf/extension_set.h | 2 +- src/google/protobuf/message.cc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src/google/protobuf') diff --git a/src/google/protobuf/extension_set.h b/src/google/protobuf/extension_set.h index 03af7eaf..df8f1f36 100644 --- a/src/google/protobuf/extension_set.h +++ b/src/google/protobuf/extension_set.h @@ -551,7 +551,7 @@ class LIBPROTOBUF_EXPORT ExtensionSet { // only contain a small number of extensions whereas hash_map is optimized // for 100 elements or more. Also, we want AppendToList() to order fields // by field number. - map extensions_; + std::map extensions_; GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ExtensionSet); }; diff --git a/src/google/protobuf/message.cc b/src/google/protobuf/message.cc index 6119d26a..b3f8024c 100644 --- a/src/google/protobuf/message.cc +++ b/src/google/protobuf/message.cc @@ -32,6 +32,7 @@ // Based on original Protocol Buffers design by // Sanjay Ghemawat, Jeff Dean, and others. +#include #include #include -- cgit v1.2.3