LiteLoaderBDS-1.16.40/LiteLoader/third-party/include/Nlohmann/fifo_json.hpp
2023-03-03 10:18:21 -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>;