Review comments - part 3

This commit is contained in:
fearlessTobi 2018-09-19 20:04:45 +02:00
parent 62f9409ba3
commit aa48468862
7 changed files with 8 additions and 26 deletions

View file

@ -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

View file

@ -6,9 +6,9 @@
#include <array>
#include <string>
#include <json.hpp>
#include "common/telemetry.h"
#include "common/web_result.h"
#include "web_service/json.h"
namespace WebService {

View file

@ -2,7 +2,7 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "web_service/json.h"
#include <json.hpp>
#include "web_service/verify_login.h"
#include "web_service/web_backend.h"