@@ -0,0 +1,11 @@
#include "Map.hpp"
void Map::safeInsert(int key, unsigned int value){
std::lock_guard<std::mutex> lock(qMutex);
uMap.insert({key, value});
}
unsigned int Map::find(int key){
return uMap[key];
The note is not visible to the blocked user.