aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/map.h
diff options
context:
space:
mode:
authorGravatar Adam Cozzette <acozzette@google.com>2018-03-13 16:37:29 -0700
committerGravatar Adam Cozzette <acozzette@google.com>2018-03-13 16:37:29 -0700
commit0400cca3236de1ca303af38bf81eab332d042b7c (patch)
treea8a9b19853f64567c96750a1c7d253926471daa5 /src/google/protobuf/map.h
parent96b535cc2f4f7b7e22a1b8622149f7c26a5a3f63 (diff)
Integrated internal changes from Google
Diffstat (limited to 'src/google/protobuf/map.h')
-rw-r--r--src/google/protobuf/map.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/google/protobuf/map.h b/src/google/protobuf/map.h
index a75fb786..6463ac2e 100644
--- a/src/google/protobuf/map.h
+++ b/src/google/protobuf/map.h
@@ -37,6 +37,7 @@
#ifndef GOOGLE_PROTOBUF_MAP_H__
#define GOOGLE_PROTOBUF_MAP_H__
+#include <initializer_list>
#include <iterator>
#include <limits> // To support Visual Studio 2008
#include <set>
@@ -48,10 +49,6 @@
#include <google/protobuf/map_type_handler.h>
#include <google/protobuf/stubs/hash.h>
-#if LANG_CXX11
-#include <initializer_list>
-#endif
-
namespace google {
namespace protobuf {
@@ -146,7 +143,6 @@ class Map {
insert(other.begin(), other.end());
}
-#if LANG_CXX11
Map(Map&& other) noexcept : Map() {
if (other.arena_) {
*this = other;
@@ -164,7 +160,6 @@ class Map {
}
return *this;
}
-#endif
template <class InputIt>
Map(const InputIt& first, const InputIt& last)
@@ -1117,11 +1112,9 @@ class Map {
}
}
}
-#if LANG_CXX11
void insert(std::initializer_list<value_type> values) {
insert(values.begin(), values.end());
}
-#endif
// Erase and clear
size_type erase(const key_type& key) {