Use simple std::map for the config

This commit is contained in:
Vitaliy Filippov
2022-07-15 01:38:30 +03:00
parent 078ed5b116
commit 30907852c2
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -11,7 +11,6 @@
#include <string>
#include <map>
#include <unordered_map>
#include <functional>
#include "object_id.h"
@@ -155,7 +154,7 @@ struct blockstore_op_t
uint8_t private_data[BS_OP_PRIVATE_DATA_SIZE];
};
typedef std::unordered_map<std::string, std::string> blockstore_config_t;
typedef std::map<std::string, std::string> blockstore_config_t;
class blockstore_impl_t;
+1
View File
@@ -17,6 +17,7 @@
#include <list>
#include <deque>
#include <new>
#include <unordered_map>
#include "cpp-btree/btree_map.h"