Skip to content

Commit f224965

Browse files
committed
corrected out of place semicolons
1 parent de8ece7 commit f224965

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Store/Json.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ bool json_encode(std::ostream& output, const char* datum) {
1010
};
1111
output << '"';
1212
return true;
13-
};
13+
}
1414

1515
bool json_encode(std::ostream& output, const std::string& datum) {
1616
return json_encode(output, datum.c_str());
17-
};
17+
}
1818

1919
}

0 commit comments

Comments
 (0)