Skip to content
Snippets Groups Projects
Unverified Commit f474f649 authored by Simon Désaulniers's avatar Simon Désaulniers
Browse files

value: missing return, errors on non-gcc

Gcc understands the syntax without return value, but this confuses other
compilers.
parent 97baacf6
Branches
Tags
No related merge requests found
......@@ -828,7 +828,7 @@ struct Query
void msgpack_unpack(const msgpack::object& o);
friend std::ostream& operator<<(std::ostream& s, const dht::Query& q) {
s << "Query[" << q.select << " " << q.where << "]";
return s << "Query[" << q.select << " " << q.where << "]";
}
Select select {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment