Index: third_party/protobuf/src/google/protobuf/arenastring.h |
diff --git a/third_party/protobuf/src/google/protobuf/arenastring.h b/third_party/protobuf/src/google/protobuf/arenastring.h |
index d983cf6ce50f3ffe85a16d98f56575344900535b..d8bd580670174837148d5df6d5dc2c854853ede2 100755 |
--- a/third_party/protobuf/src/google/protobuf/arenastring.h |
+++ b/third_party/protobuf/src/google/protobuf/arenastring.h |
@@ -37,7 +37,6 @@ |
#include <google/protobuf/stubs/common.h> |
#include <google/protobuf/stubs/fastmem.h> |
#include <google/protobuf/arena.h> |
-#include <google/protobuf/generated_message_util.h> |
@@ -64,9 +63,7 @@ struct LIBPROTOBUF_EXPORT ArenaStringPtr { |
} |
// Basic accessors. |
- inline const ::std::string& Get(const ::std::string* /* default_value */) const { |
- return *ptr_; |
- } |
+ inline const ::std::string& Get() const { return *ptr_; } |
inline ::std::string* Mutable(const ::std::string* default_value, |
::google::protobuf::Arena* arena) { |
@@ -150,13 +147,12 @@ struct LIBPROTOBUF_EXPORT ArenaStringPtr { |
std::swap(ptr_, other->ptr_); |
} |
- // Frees storage (if not on an arena) and sets field to default value. |
+ // Frees storage (if not on an arena). |
inline void Destroy(const ::std::string* default_value, |
::google::protobuf::Arena* arena) { |
if (arena == NULL && ptr_ != default_value) { |
delete ptr_; |
} |
- ptr_ = const_cast< ::std::string* >(default_value); |
} |
// Clears content, but keeps allocated string if arena != NULL, to avoid the |
@@ -216,9 +212,7 @@ struct LIBPROTOBUF_EXPORT ArenaStringPtr { |
void AssignWithDefault(const ::std::string* default_value, ArenaStringPtr value); |
- inline const ::std::string& GetNoArena(const ::std::string* /* default_value */) const { |
- return *ptr_; |
- } |
+ inline const ::std::string& GetNoArena() const { return *ptr_; } |
::std::string* MutableNoArena(const ::std::string* default_value); |
@@ -271,6 +265,10 @@ struct LIBPROTOBUF_EXPORT ArenaStringPtr { |
return &ptr_; |
} |
+ inline bool IsDefault(const ::std::string* default_value) const { |
+ return ptr_ == default_value; |
+ } |
+ |
private: |
::std::string* ptr_; |