summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-04 06:08:02 +0000
committerDavid Robillard <d@drobilla.net>2011-02-04 06:08:02 +0000
commitbc914576ae862e8241e6b830e28361e9de6a01cf (patch)
tree10643d3636c10181682bbbcb54fe023cd89773e4 /src
parentf06405b532d2cb164313311c44969d08fcf5fa65 (diff)
downloadpatchage-bc914576ae862e8241e6b830e28361e9de6a01cf.tar.gz
patchage-bc914576ae862e8241e6b830e28361e9de6a01cf.tar.bz2
patchage-bc914576ae862e8241e6b830e28361e9de6a01cf.zip
Fix warnings when building with --strict (but without --debug).
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@2909 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/PortID.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/PortID.hpp b/src/PortID.hpp
index 35f8b53..e411cba 100644
--- a/src/PortID.hpp
+++ b/src/PortID.hpp
@@ -82,6 +82,7 @@ operator<<(std::ostream& os, const PortID& id)
break;
}
assert(false);
+ return os;
}
static inline bool
@@ -114,6 +115,7 @@ operator<(const PortID& a, const PortID& b)
break;
}
assert(false);
+ return false;
}
#endif // PATCHAGE_PORTID_HPP