summaryrefslogtreecommitdiffstats
path: root/src/handle_event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/handle_event.cpp')
-rw-r--r--src/handle_event.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/handle_event.cpp b/src/handle_event.cpp
index d3752d1..b6412c2 100644
--- a/src/handle_event.cpp
+++ b/src/handle_event.cpp
@@ -27,6 +27,8 @@ PATCHAGE_DISABLE_FMT_WARNINGS
#include <fmt/ostream.h>
PATCHAGE_RESTORE_WARNINGS
+namespace patchage {
+
namespace {
class EventHandler
@@ -123,3 +125,5 @@ handle_event(Patchage& patchage, const PatchageEvent& event)
EventHandler handler{patchage};
boost::apply_visitor(handler, event);
}
+
+} // namespace patchage