summaryrefslogtreecommitdiffhomepage
path: root/fake-json.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'fake-json.hpp')
-rw-r--r--fake-json.hpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/fake-json.hpp b/fake-json.hpp
deleted file mode 100644
index 57943d37..00000000
--- a/fake-json.hpp
+++ /dev/null
@@ -1,31 +0,0 @@
-#pragma once
-//#define GAME_REAL_JSON
-#if !defined __CLION_IDE__ || defined GAME_REAL_JSON
-# include <nlohmann/json.hpp>
-#else
-
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wunknown-pragmas"
-#pragma ide diagnostic ignored "NotImplementedFunctions"
-
-namespace nlohmann {
- struct json {
- template<typename t> operator t() const;
- const json& dump(int) const;
- template<typename t> json(const t&);
- json();
- };
- template<typename t> json& operator>>(const t&, json&);
- template<typename t> json& operator<<(t&, const json&);
- template<typename t> struct adl_serializer {
- static void to_json(json&, const t&);
- static void from_json(const json&, t&);
- };
- template<typename t> void from_json(const json&, t&);
- template<typename t> void to_json(const json&, const t&);
-} // namespace nlohmann
-
-#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(...)
-
-#pragma clang diagnostic pop
-#endif