1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into engine-api

This commit is contained in:
jsteemann 2017-03-06 13:25:50 +01:00
commit 219fb4dbcc
1 changed files with 4 additions and 4 deletions

View File

@ -77,9 +77,9 @@ class LoggerStream {
}
template <typename T>
LoggerStream& operator<<(T const& obj) {
_out << obj;
return *this;
friend LoggerStream& operator<<(LoggerStream& out, T const& obj) {
out << obj;
return out;
}
template <typename T1, typename T2>