LiteLoaderBDS-1.16.40/LiteLoader/Header/third-party/Nlohmann/fifo_json.hpp
2022-09-21 19:47:03 +08:00

7 lines
290 B
C++

#include "json.hpp"
#include "fifo_map.hpp"
#include <string>
template<class Key, class T, class dummy_compare, class Allocator>
using workaround_fifo_map = nlohmann::fifo_map<Key, T, nlohmann::fifo_map_compare<Key>, Allocator>;
using fifo_json = nlohmann::basic_json<workaround_fifo_map>;