mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-06 12:03:39 +00:00
7 lines
290 B
C++
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>; |