src/library/base/EventRegistry.cpp
@@ -10,6 +10,7 @@ #include <algorithm> #include <map> #include <iostream> #include <sstream> #include "EventRegistry.h" #define LIC_ID_NOT_DEFINED "UNDEF" @@ -41,6 +42,12 @@ return out; } string EventRegistry::to_string() const { std::stringstream ss; ss << this; return ss.str(); } void EventRegistry::append(const EventRegistry &eventRegistry) { logs.insert(logs.end(), eventRegistry.logs.begin(), eventRegistry.logs.end()); }