Skip to content

Commit ca39471

Browse files
committed
int > long in logger visitor
1 parent 4d5a268 commit ca39471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

json_logger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace {
1414
struct ptree_writer {
1515
boost::property_tree::ptree& pt;
1616
const std::string& k;
17-
void operator()(int v) {
17+
void operator()(long v) {
1818
pt.put(k, v);
1919
}
2020
void operator()(double v) {

0 commit comments

Comments
 (0)