Whitespace changes (cleanup)

This commit is contained in:
greg7mdp
2023-11-18 23:29:47 -05:00
parent 0046905791
commit 2ee44550e1
2 changed files with 1 additions and 3 deletions
+1 -2
View File
@@ -2214,11 +2214,10 @@ protected:
return (size_t)-1;
}
template <class K>
std::pair<size_t, bool> find_or_prepare_insert(const K& key, size_t hashval) {
size_t offset = _find_key(key, hashval);
if (offset == (size_t)-1)
if (offset == (size_t)-1)
return {prepare_insert(hashval), true};
return {offset, false};
}
-1
View File
@@ -4879,7 +4879,6 @@ public:
lock();
return true;
}
private:
mutex_type *m_;