summaryrefslogtreecommitdiffstats
path: root/src/PortID.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-29 10:15:16 +0100
committerDavid Robillard <d@drobilla.net>2020-11-29 12:00:37 +0100
commit19b657b9882e53863cbd80964fcea0e1213439bd (patch)
tree8667363aefb833ac3fbc9b234bb53cee0d20f6fa /src/PortID.hpp
parentd4d86ae54ebe73ad481f84145002ed8fb425d34f (diff)
downloadpatchage-19b657b9882e53863cbd80964fcea0e1213439bd.tar.gz
patchage-19b657b9882e53863cbd80964fcea0e1213439bd.tar.bz2
patchage-19b657b9882e53863cbd80964fcea0e1213439bd.zip
Fix GCC return type warnings
It would be nice if compilers could agree on how to deal with this.
Diffstat (limited to 'src/PortID.hpp')
-rw-r--r--src/PortID.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/PortID.hpp b/src/PortID.hpp
index e399220..d92f08e 100644
--- a/src/PortID.hpp
+++ b/src/PortID.hpp
@@ -19,6 +19,7 @@
#include "ClientID.hpp"
#include "ClientType.hpp"
+#include "warnings.hpp"
#include <cassert>
#include <iostream>
@@ -68,6 +69,8 @@ struct PortID
case Type::alsa:
return ClientID::alsa(_alsa_client);
}
+
+ PATCHAGE_UNREACHABLE();
}
Type type() const { return _type; }