Browse Source

settings: Clean up includes

Adds <version> since we are looking at C++ implementation version
details. Also moves exception header includes into the if preprocessor
command since we only use it there.
nce_cpp
lat9nq 3 years ago
parent
commit
dfc7afe44d
  1. 5
      src/common/settings.cpp

5
src/common/settings.cpp

@ -1,10 +1,11 @@
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include <exception>
#include <stdexcept>
#include <version>
#if __cpp_lib_chrono >= 201907L
#include <chrono>
#include <exception>
#include <stdexcept>
#endif
#include <string_view>

Loading…
Cancel
Save