diff options
Diffstat (limited to 'src/event_to_string.cpp')
-rw-r--r-- | src/event_to_string.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/event_to_string.cpp b/src/event_to_string.cpp index 503144c..cdfeee4 100644 --- a/src/event_to_string.cpp +++ b/src/event_to_string.cpp @@ -43,6 +43,8 @@ struct EventPrinter case ClientType::alsa: return "ALSA"; } + + PATCHAGE_UNREACHABLE(); } std::string operator()(const DriverAttachmentEvent& event) @@ -80,6 +82,8 @@ struct EventPrinter case PortType::jack_cv: return "JACK CV"; } + + PATCHAGE_UNREACHABLE(); } std::string operator()(const SignalDirection direction) @@ -92,6 +96,8 @@ struct EventPrinter case SignalDirection::duplex: return "duplex"; } + + PATCHAGE_UNREACHABLE(); } std::string operator()(const PortCreationEvent& event) |