Mercurial > hg > piper-cpp
diff vamp-client/CapnpRRClient.h @ 111:d74dfc11927c
OSX build fixes and logic
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Tue, 25 Oct 2016 14:48:56 +0100 |
parents | 8c449824e08d |
children | ff3fd8d1b2dc |
line wrap: on
line diff
--- a/vamp-client/CapnpRRClient.h Mon Oct 24 17:54:37 2016 +0100 +++ b/vamp-client/CapnpRRClient.h Tue Oct 25 14:48:56 2016 +0100 @@ -1,3 +1,4 @@ +/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ #ifndef PIPER_CAPNP_CLIENT_H #define PIPER_CAPNP_CLIENT_H @@ -286,7 +287,8 @@ if (r.getResponse().which() != type) { std::cerr << "checkResponseType: wrong response type (received " - << r.getResponse().which() << ", expected " << type << ")" + << int(r.getResponse().which()) << ", expected " + << int(type) << ")" << std::endl; throw std::runtime_error("Wrong response type"); }