base-hw: coding style

Improve consistency with the other base repositories, in particular

- Indentation of class initializers
- Vertical whitespace around control-flow statements
- Preferably place control-flow statements (return, break, continue) at
  beginning of a line
- Placing the opening brace of a namespace at the end of line
- Placing the opening brace of a class at a new line
- Removing superfluous braces around single statements
- Two empty lines between methods/functions in implementation files
This commit is contained in:
Norman Feske
2021-02-01 15:44:16 +01:00
parent cbae9bc1c8
commit 493924a35e
232 changed files with 1311 additions and 731 deletions

View File

@ -18,8 +18,8 @@
#include <kernel/types.h>
#include <kernel/interface_support.h>
namespace Kernel
{
namespace Kernel {
/**
* Kernel names of the kernel calls
*/