diff options
author | fearlessTobi <thm.frey@gmail.com> | 2018-09-19 20:04:45 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2018-10-02 15:30:48 +0200 |
commit | aa484688623db59df3ef334a63eff98d98e362f3 (patch) | |
tree | 23c2ccdbe5e562e281e1e96d306036f724856461 /src/web_service/json.h | |
parent | 62f9409ba3e114b40b6923808290c02bf5af3d2c (diff) |
Review comments - part 3
Diffstat (limited to 'src/web_service/json.h')
-rw-r--r-- | src/web_service/json.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/web_service/json.h b/src/web_service/json.h deleted file mode 100644 index 88b31501e..000000000 --- a/src/web_service/json.h +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright 2018 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#pragma once - -// This hack is needed to support json.hpp on platforms where the C++17 stdlib -// lacks std::string_view. See https://github.com/nlohmann/json/issues/735. -// clang-format off -#if !__has_include(<string_view>) && __has_include(<experimental/string_view>) -# include <experimental/string_view> -# define string_view experimental::string_view -# include <json.hpp> -# undef string_view -#else -# include <json.hpp> -#endif -// clang-format on |