Cleanup some unused includes

This commit is contained in:
Armin Friedl 2024-02-27 21:47:34 +01:00
parent c1506c4547
commit 65053bbcb9
Signed by: armin
GPG key ID: 48C726EEE7FBCBC8
2 changed files with 1 additions and 8 deletions

View file

@ -1,11 +1,6 @@
#include "UserOpt.hpp" #include "UserOpt.hpp"
#include <tclap/ArgException.h>
#include <tclap/CmdLine.h> #include <tclap/CmdLine.h>
#include <tclap/StdOutput.h>
#include <tclap/SwitchArg.h>
#include <tclap/UnlabeledMultiArg.h>
#include <tclap/ValueArg.h>
template <> template <>
struct TCLAP::ArgTraits<std::filesystem::path> { struct TCLAP::ArgTraits<std::filesystem::path> {

View file

@ -1,13 +1,11 @@
#include <spdlog/common.h> #include <spdlog/common.h>
#include <spdlog/logger.h>
#include <spdlog/spdlog.h> #include <spdlog/spdlog.h>
#include <cstdlib> #include <cstdlib>
#include <filesystem> #include <filesystem>
#include <optional>
#include "UserOpt.hpp"
#include "UserIntent.hpp" #include "UserIntent.hpp"
#include "UserOpt.hpp"
#include "util/Common.hpp" #include "util/Common.hpp"
#include "util/Log.hpp" #include "util/Log.hpp"