From 19c8473294f5b8e53d38f6bc97dd5b3841846c69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Wed, 18 Feb 2009 20:01:44 +0000 Subject: [PATCH] reverted [1254] it was made by mistake --- test/testsimplifytokens.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testsimplifytokens.cpp b/test/testsimplifytokens.cpp index 2a5c65e62..0ee27918a 100644 --- a/test/testsimplifytokens.cpp +++ b/test/testsimplifytokens.cpp @@ -139,7 +139,7 @@ private: { const char code1[] = " void f() { int a; bool use = false; if( use ) a=0; else if( bb ) a=1; int c=1; } "; - const char code2[] = " void f() { int a; bool use = false; { if( bb ) a=1; int c=1; } } "; + const char code2[] = " void f() { int a; bool use = false; if( bb ) a=1; int c=1; } "; ASSERT_EQUALS(tok(code2), tok(code1)); }