astyle formatting

This commit is contained in:
Daniel Marjamäki 2011-01-06 12:07:18 +01:00
parent 6ec4497919
commit ed71c57f1f
1 changed files with 2 additions and 2 deletions

View File

@ -1625,14 +1625,14 @@ private:
"}\n"
);
ASSERT_EQUALS("[test.cpp:2]: (warning) memset() called to fill 0"
" bytes of \"p\". Second and third arguments might be inverted.\n", errout.str());
" bytes of \"p\". Second and third arguments might be inverted.\n", errout.str());
check("void f() {\n"
" memset(p, sizeof(p), 0)\n"
"}\n"
);
TODO_ASSERT_EQUALS("[test.cpp:2]: (warning) memset() called to fill 0"
" bytes of \"p\". Second and third arguments might be inverted.\n", errout.str());
" bytes of \"p\". Second and third arguments might be inverted.\n", errout.str());
}
};