@@ -1,8 +1,5 @@ | |||
#ifndef DDS_LOGGING_HPP_INCLUDED | |||
#define DDS_LOGGING_HPP_INCLUDED | |||
#pragma once | |||
#include <spdlog/fmt/ostr.h> | |||
#include <spdlog/sinks/stdout_color_sinks.h> | |||
#include <spdlog/spdlog.h> | |||
#endif // DDS_LOGGING_HPP_INCLUDED |
@@ -1,5 +1,4 @@ | |||
#ifndef DDS_PROC_HPP_INCLUDED | |||
#define DDS_PROC_HPP_INCLUDED | |||
#pragma once | |||
#include <string> | |||
#include <string_view> | |||
@@ -34,5 +33,3 @@ struct proc_result { | |||
proc_result run_proc(const std::vector<std::string>& args); | |||
} // namespace dds | |||
#endif // DDS_PROC_HPP_INCLUDED |
@@ -1,5 +1,4 @@ | |||
#ifndef DDS_TOOLCHAIN_HPP_INCLUDED | |||
#define DDS_TOOLCHAIN_HPP_INCLUDED | |||
#pragma once | |||
#include <dds/util/fs.hpp> | |||
@@ -90,5 +89,3 @@ public: | |||
}; | |||
} // namespace dds | |||
#endif // DDS_TOOLCHAIN_HPP_INCLUDED |
@@ -1,5 +1,4 @@ | |||
#ifndef DDS_UTIL_TEST_HPP_INCLUDED | |||
#define DDS_UTIL_TEST_HPP_INCLUDED | |||
#pragma once | |||
#include <iostream> | |||
@@ -43,5 +42,3 @@ struct requirement_failed {}; | |||
static_assert(true) | |||
} // namespace dds | |||
#endif // DDS_UTIL_TEST_HPP_INCLUDED |