Style: Fix unnecessary semicolons that confused clang-format

This commit is contained in:
Rémi Verschelde
2020-05-19 11:24:58 +02:00
parent 74b5d6839a
commit ca3192d18a
25 changed files with 64 additions and 159 deletions

View File

@ -94,10 +94,9 @@ uint64_t OS::get_system_time_msecs() const {
return 0;
}
void OS::debug_break(){
void OS::debug_break() {
// something
};
}
void OS::_set_logger(CompositeLogger *p_logger) {
if (_logger) {