From dfde9772e2be9bbf0f10309c09006d73bb4a2041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 1 May 2010 11:54:04 +0200 Subject: [PATCH] astyle formatting --- test/testunusedvar.cpp | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/test/testunusedvar.cpp b/test/testunusedvar.cpp index c3005ae97..6abcdbfc8 100644 --- a/test/testunusedvar.cpp +++ b/test/testunusedvar.cpp @@ -894,10 +894,10 @@ private: " a = b = c = 0;\n" "}\n"); ASSERT_EQUALS( - "[test.cpp:3]: (style) Variable 'a' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'b' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'c' is assigned a value that is never used\n", - errout.str()); + "[test.cpp:3]: (style) Variable 'a' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'b' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'c' is assigned a value that is never used\n", + errout.str()); functionVariableUsage("int * foo()\n" "{\n" @@ -1013,13 +1013,13 @@ private: "\n" "}\n"); ASSERT_EQUALS( - "[test.cpp:3]: (style) Variable 'a' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'b' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'c' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'd' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'e' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'f' is assigned a value that is never used\n", - errout.str()); + "[test.cpp:3]: (style) Variable 'a' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'b' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'c' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'd' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'e' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'f' is assigned a value that is never used\n", + errout.str()); functionVariableUsage("void foo()\n" "{\n" @@ -1028,15 +1028,15 @@ private: "\n" "}\n"); ASSERT_EQUALS( - "[test.cpp:3]: (style) Variable 'a' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'b' is assigned a value that is never used\n", - errout.str()); + "[test.cpp:3]: (style) Variable 'a' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'b' is assigned a value that is never used\n", + errout.str()); TODO_ASSERT_EQUALS( - "[test.cpp:3]: (style) Variable 'a' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'b' is assigned a value that is never used\n" - "[test.cpp:3]: (style) Variable 'c' is assigned a value that is never used\n", - errout.str()); + "[test.cpp:3]: (style) Variable 'a' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'b' is assigned a value that is never used\n" + "[test.cpp:3]: (style) Variable 'c' is assigned a value that is never used\n", + errout.str()); } void localvaralias1()