Skip to content
Snippets Groups Projects

Cleanups and fixes for the communication layer

Merged Stefan Schmidt requested to merge stefanschmidt/eddie:fixes into main
7 files
+ 10
617
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -56,7 +56,6 @@ public:
@@ -56,7 +56,6 @@ public:
void erase(Key const &k) {
void erase(Key const &k) {
std::unique_lock<decltype(m_)> lock(m_);
std::unique_lock<decltype(m_)> lock(m_);
Value elem = this->get(k);
c_.erase(k);
c_.erase(k);
}
}
};
};
Loading