summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-01-23 09:23:47 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-01-23 09:23:47 +0000
commite7f0c18c77929909632121f9baa52805addc4842 (patch)
tree9b6a8d59c8797f01689eab91993c82c1c225a1c0 /vespalib
parent5d2e89d0e9fea8e19720dedfca283f4f788958d7 (diff)
Move the transaction implementation from StructuredFieldValue to Document
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/stllike/hash_map.h2
-rw-r--r--vespalib/src/vespa/vespalib/stllike/hash_map.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/vespalib/src/vespa/vespalib/stllike/hash_map.h b/vespalib/src/vespa/vespalib/stllike/hash_map.h
index 372178af7f5..3dc5de65285 100644
--- a/vespalib/src/vespa/vespalib/stllike/hash_map.h
+++ b/vespalib/src/vespa/vespalib/stllike/hash_map.h
@@ -29,7 +29,7 @@ public:
hash_map(size_t reserveSize=0);
hash_map(size_t reserveSize, H hasher, EQ equality);
hash_map(std::initializer_list<value_type> input);
- ~hash_map();
+ ~hash_map() noexcept;
iterator begin() { return _ht.begin(); }
iterator end() { return _ht.end(); }
const_iterator begin() const { return _ht.begin(); }
diff --git a/vespalib/src/vespa/vespalib/stllike/hash_map.hpp b/vespalib/src/vespa/vespalib/stllike/hash_map.hpp
index 311a256be76..08edcf3c837 100644
--- a/vespalib/src/vespa/vespalib/stllike/hash_map.hpp
+++ b/vespalib/src/vespa/vespalib/stllike/hash_map.hpp
@@ -25,7 +25,7 @@ hash_map<K, V, H, EQ, M>::hash_map(std::initializer_list<value_type> input)
}
template <typename K, typename V, typename H, typename EQ, typename M>
-hash_map<K, V, H, EQ, M>::~hash_map() = default;
+hash_map<K, V, H, EQ, M>::~hash_map() noexcept = default;
template <typename K, typename V, typename H, typename EQ, typename M>
void