Mercurial > hg > piper-cpp
changeset 153:e558e042d9c7
The gcc version Travis is using complains about the default return;
changing that, but a bit worried this may presage more
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 20 Jan 2017 18:00:32 +0000 |
parents | 6ccb195d6de6 |
children | 80d85794d8cd |
files | vamp-server/convert.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/vamp-server/convert.cpp Fri Jan 20 17:52:56 2017 +0000 +++ b/vamp-server/convert.cpp Fri Jan 20 18:00:32 2017 +0000 @@ -166,7 +166,7 @@ case piper::RpcRequest::Id::Which::NONE: return { RequestOrResponse::RpcId::Absent, 0, "" }; } - return {}; + return { RequestOrResponse::RpcId::Absent, 0, "" }; } template <typename Builder>