diff --git a/CODING_CONVENTIONS_C++.md b/CODING_CONVENTIONS_C++.md index a9c12ba18774..81eea6cce6db 100644 --- a/CODING_CONVENTIONS_C++.md +++ b/CODING_CONVENTIONS_C++.md @@ -158,15 +158,6 @@ void my_class::do_something_else() { - Keywords are always followed by a whitespace: `if (...)`, `template <...>`, `while (...)`, etc. -- Leave a whitespace after `!` to make negations easily recognizable: - - ```cpp - if (! sunny()) - stay_home(); - else - go_outside(); - ``` - - Opening braces belong to the same line: ```cpp