Skip to content

Commit

Permalink
Header fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bingran Hu committed Dec 8, 2024
1 parent 60d85d0 commit ace4d66
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion components/core/src/clp/clo/CommandLineArguments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

#include <boost/program_options.hpp>

#include "../../reducer/types.hpp"
#include "../cli_utils.hpp"
#include "../reducer/types.hpp"
#include "../spdlog_with_specializations.hpp"
#include "../version.hpp"

Expand Down
6 changes: 3 additions & 3 deletions components/core/src/clp/clp/FileDecompressor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
#include <filesystem>
#include <string>

#include "../ErrorCode.hpp"
#include "../FileWriter.hpp"
#include "../ir/constants.hpp"
#include "../ir/LogEventSerializer.hpp"
#include "../ir/types.hpp"
#include "../spdlog_with_specializations.hpp"
#include "../streaming_archive/MetadataDB.hpp"
#include "../streaming_archive/reader/Archive.hpp"
#include "../streaming_archive/reader/File.hpp"
#include "../streaming_archive/reader/Message.hpp"
#include "ErrorCode.hpp"
#include "ir/types.hpp"
#include "Utils.hpp"
#include "../Utils.hpp"

namespace clp::clp {
/**
Expand Down
2 changes: 1 addition & 1 deletion components/core/src/clp/clp/decompression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
#include "../FileWriter.hpp"
#include "../GlobalMySQLMetadataDB.hpp"
#include "../GlobalSQLiteMetadataDB.hpp"
#include "../ir/constants.hpp"
#include "../spdlog_with_specializations.hpp"
#include "../streaming_archive/reader/Archive.hpp"
#include "../TraceableException.hpp"
#include "../Utils.hpp"
#include "FileDecompressor.hpp"
#include "ir/constants.hpp"
#include "utils.hpp"

using std::cerr;
Expand Down
4 changes: 2 additions & 2 deletions components/core/src/clp/clp/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#include "../GlobalMySQLMetadataDB.hpp"
#include "../GlobalSQLiteMetadataDB.hpp"
#include "../spdlog_with_specializations.hpp"
#include "../streaming_archive/Constants.hpp"
#include "../TraceableException.hpp"
#include "../Utils.hpp"
#include "streaming_archive/Constants.hpp"
#include "TraceableException.hpp"

using std::string;
using std::vector;
Expand Down
4 changes: 2 additions & 2 deletions components/core/src/clp/clp/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

#include <boost/filesystem/path.hpp>

#include "../ErrorCode.hpp"
#include "../GlobalMetadataDB.hpp"
#include "../GlobalMetadataDBConfig.hpp"
#include "ErrorCode.hpp"
#include "../TraceableException.hpp"
#include "FileToCompress.hpp"
#include "TraceableException.hpp"

namespace clp::clp {
// Types
Expand Down
2 changes: 1 addition & 1 deletion components/core/src/clp/ir/EncodedTextAst.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <string>

#include "../ffi/encoding_methods.hpp"
#include "ffi/ir_stream/decoding_methods.hpp"
#include "../ffi/ir_stream/decoding_methods.hpp"

using clp::ffi::decode_float_var;
using clp::ffi::decode_integer_var;
Expand Down
2 changes: 1 addition & 1 deletion components/core/src/clp/ir/LogEvent.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include <utility>
#include <vector>

#include "../time_types.hpp"
#include "EncodedTextAst.hpp"
#include "time_types.hpp"
#include "types.hpp"

namespace clp::ir {
Expand Down
2 changes: 1 addition & 1 deletion components/core/src/clp_s/CommandLineArguments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#include <spdlog/spdlog.h>

#include "../clp/cli_utils.hpp"
#include "../clp/type_utils.hpp"
#include "../reducer/types.hpp"
#include "FileReader.hpp"
#include "type_utils.hpp"

namespace po = boost::program_options;

Expand Down

0 comments on commit ace4d66

Please sign in to comment.