diff --git a/src/clp_ffi_js/ir/LogEventWithFilterData.hpp b/src/clp_ffi_js/ir/LogEventWithFilterData.hpp index 073c1290..681749ed 100644 --- a/src/clp_ffi_js/ir/LogEventWithFilterData.hpp +++ b/src/clp_ffi_js/ir/LogEventWithFilterData.hpp @@ -1,6 +1,7 @@ #ifndef CLP_FFI_JS_IR_LOGEVENTWITHFILTERDATA_HPP #define CLP_FFI_JS_IR_LOGEVENTWITHFILTERDATA_HPP +#include #include #include @@ -15,7 +16,7 @@ using UnstructuredLogEvent = clp::ir::LogEvent; // Concept defining valid log event types. // TODO: Extend valid log event types when filtering support is added for structured logs. template -concept validLogEventTypes = std::same_as; +concept ValidLogEventTypes = std::same_as; /** * A templated class that extends a log event type with processed versions of some of its fields, @@ -25,7 +26,7 @@ concept validLogEventTypes = std::same_as; * @tparam LogEvent The type of the log event. */ template -requires validLogEventTypes +requires ValidLogEventTypes class LogEventWithFilterData { public: // Constructor