Commit d8c0dc9d authored by Dominik Charousset's avatar Dominik Charousset

Coding style nitpicks

parent f85d59eb
...@@ -11,9 +11,13 @@ namespace { ...@@ -11,9 +11,13 @@ namespace {
atomic<size_t> s_error_count{0}; atomic<size_t> s_error_count{0};
} }
size_t caf_error_count() { return s_error_count; } size_t caf_error_count() {
return s_error_count;
}
void caf_inc_error_count() { ++s_error_count; } void caf_inc_error_count() {
++s_error_count;
}
string caf_fill4(size_t value) { string caf_fill4(size_t value) {
string result = to_string(value); string result = to_string(value);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment