Reorder the fields of LogHelper to be consistent with initialization order because blaze would complain about it

This commit is contained in:
zhangkun83 2015-01-26 15:11:24 -08:00
parent 0ca6584d19
commit 03f3f5cd97
1 changed files with 1 additions and 1 deletions

View File

@ -9,8 +9,8 @@
#include <google/protobuf/descriptor.h>
class LogHelper {
bool abort;
std::ostream* os;
bool abort;
public:
LogHelper(std::ostream* os, bool abort) : os(os), abort(abort) {}