fuse_open.cpp

This commit is contained in:
Antonio SJ Musumeci
2024-04-12 10:20:34 -05:00
parent 5c0c50f976
commit bba5951111
-17
View File
@@ -36,23 +36,6 @@
#include <vector>
#include <mutex>
struct PT
{
PT()
{
}
PT(PT &&pt_)
{
x = pt_.x;
}
int x;
mutable std::mutex mutex;
};
typedef boost::unordered::concurrent_flat_map<std::string,PT> PTMap;;
static PTMap pt;
namespace l
{