From 5bdab3c0e32eac211183baf8fd2a0a2c739ca442 Mon Sep 17 00:00:00 2001 From: Dave Marco Date: Sun, 10 Nov 2024 21:57:10 +0000 Subject: [PATCH] small change --- src/clp_ffi_js/ir/LogEventWithFilterData.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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