summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2018-04-07 21:47:11 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2018-04-07 21:47:11 +0000
commitd695974abd9e4510ede9f0269ff97d1509692ac4 (patch)
treef782f9a580c1430793eb66224b1d35f5e49a8c1c /doc
parent5fb60fff96665a76faa0dfc7877b61c247414c9a (diff)
downloadVirtualBox-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.cpp2
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>