Updated coding conventions.

This commit is contained in:
jpekkila
2019-06-14 11:39:55 +00:00
parent 158ba89cd3
commit 95c9670a65

View File

@@ -55,7 +55,7 @@ If you have clang-format, you may run `scripts/fix_style.sh`. This script will r
#include "avoid_including_headers_here.h"
/** Doxygen comments */
void global_function(void);
void globalFunction(void);
```
@@ -84,7 +84,7 @@ local_function(const SomeStruct& constant_struct, SomeStruct* modified_struct)
}
void
global_function(void)
globalFunction(void)
{
return;
}