From: Jim Grosbach Date: Fri, 28 Oct 2011 20:52:20 +0000 (+0000) Subject: Clarify example snippets a bit. X-Git-Tag: android-x86-6.0-r1~263^2~541 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=087f050bf9e033a97afce7c061e0831b6f1a442c;p=android-x86%2Fexternal-llvm.git Clarify example snippets a bit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143224 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 4460224c1a6..2cdcd270bf3 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -998,7 +998,7 @@ vector is also useful when interfacing with code that expects vectors :).
 for ( ... ) {
    std::vector<foo> V;
-   use V;
+   // make use of V.
 }
 
@@ -1009,7 +1009,7 @@ for ( ... ) {
 std::vector<foo> V;
 for ( ... ) {
-   use V;
+   // make use of V.
    V.clear();
 }