diff --git a/src/clp_ffi_js/ir/LogEventWithFilterData.hpp b/src/clp_ffi_js/ir/LogEventWithFilterData.hpp index 681749ed..1ff5f07b 100644 --- a/src/clp_ffi_js/ir/LogEventWithFilterData.hpp +++ b/src/clp_ffi_js/ir/LogEventWithFilterData.hpp @@ -13,11 +13,6 @@ namespace clp_ffi_js::ir { using clp::ir::four_byte_encoded_variable_t; 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; - /** * A templated class that extends a log event type with processed versions of some of its fields, * specifically the fields that are used for filtering in the `StreamReader` classes and their @@ -26,7 +21,7 @@ concept ValidLogEventTypes = std::same_as; * @tparam LogEvent The type of the log event. */ template -requires ValidLogEventTypes +requires std::same_as class LogEventWithFilterData { public: // Constructor