summaryrefslogtreecommitdiff
path: root/chromium/base/containers/flat_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/containers/flat_map.h')
-rw-r--r--chromium/base/containers/flat_map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/base/containers/flat_map.h b/chromium/base/containers/flat_map.h
index ed82c5d516c..4a0def5a378 100644
--- a/chromium/base/containers/flat_map.h
+++ b/chromium/base/containers/flat_map.h
@@ -9,8 +9,8 @@
#include <tuple>
#include <utility>
+#include "base/check.h"
#include "base/containers/flat_tree.h"
-#include "base/logging.h"
#include "base/template_util.h"
namespace base {
@@ -202,7 +202,7 @@ class flat_map : public ::base::internal::flat_tree<
~flat_map() = default;
flat_map& operator=(const flat_map&) = default;
- flat_map& operator=(flat_map&&) = default;
+ flat_map& operator=(flat_map&&) noexcept = default;
// Takes the first if there are duplicates in the initializer list.
flat_map& operator=(std::initializer_list<value_type> ilist);