Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(core): Add missing ../ to fix relative header file includes. #627

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading