Cpp Coding Standards/FORMAT

From Apache OpenOffice Wiki
Jump to: navigation, search

Topic-Id: FORMAT

How to format the code generally should not be governed by rules. Here are only a few things that are necessary for correct compiler behaviour or increase code readability significantly.


Summary

Newline at End of File (Eof)

Always conclude your source file with a newline character.

Details

Source Code Character Set (CharSet)

Don't use non-ASCII characters.

Exception: Use UTF8 encoding in resource files.

Details

No Cpp Comments in C Code (CppComm)

Don't use C++ comments in C code or C headers.

Details

Indentation (Indent)

Indentation is 4 spaces.

Details

No Tabs (NoTabs)

Use spaces, not tabs.

Details


Personal tools