diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2018-04-07 21:47:11 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2018-04-07 21:47:11 +0000 |
commit | d695974abd9e4510ede9f0269ff97d1509692ac4 (patch) | |
tree | f782f9a580c1430793eb66224b1d35f5e49a8c1c /doc | |
parent | 5fb60fff96665a76faa0dfc7877b61c247414c9a (diff) | |
download | VirtualBox-svn-d695974abd9e4510ede9f0269ff97d1509692ac4.tar.gz |
VBox-CodingGuielines.cpp: Better metion the typical 'last' vs 'end' use in VBox.
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@71739 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'doc')
-rw-r--r-- | doc/VBox-CodingGuidelines.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/VBox-CodingGuidelines.cpp b/doc/VBox-CodingGuidelines.cpp index a79e87eb7cc..0c4ef3a96a6 100644 --- a/doc/VBox-CodingGuidelines.cpp +++ b/doc/VBox-CodingGuidelines.cpp @@ -142,6 +142,8 @@ * * <li> No 'else' after if block ending with 'return', 'break', or 'continue'. * + * <li> The term 'last' is inclusive, whereas the term 'end' is exclusive. + * * <li> Go through all of this: https://www.slideshare.net/olvemaudal/deep-c/ * * </ul> |