From d99f707392f832a1458943f4724aa4a5d602a9b0 Mon Sep 17 00:00:00 2001 From: BearLin Date: Tue, 8 Mar 2016 21:10:40 +0800 Subject: [PATCH] Rephrase the last paragraph in Local Variables section of cppguide.html to make it more clear --- cppguide.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cppguide.html b/cppguide.html index f91ca9b..507404d 100644 --- a/cppguide.html +++ b/cppguide.html @@ -820,7 +820,7 @@ for (int i = 0; i < 1000000; ++i) {

It may be more efficient to declare such a variable -used in a loop outside that loop:

+(which is used in a loop) outside that loop:

Foo f;  // My ctor and dtor get called once each.
 for (int i = 0; i < 1000000; ++i) {