diff options
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/logging.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index 2ec15cb68d25..e3e7c8e6f330 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -47,7 +47,7 @@ public: struct Field { // FIXME: use std::variant. - enum { tInt, tString } type; + enum { tInt = 0, tString = 1 } type; uint64_t i = 0; std::string s; Field(const std::string & s) : type(tString), s(s) { } |