Running astyle [ci skip]

This commit is contained in:
orbitcowboy 2020-03-03 20:38:30 +01:00
parent ed2720db05
commit f05c504440
1 changed files with 4 additions and 4 deletions

View File

@ -2814,10 +2814,10 @@ private:
ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:4]: (portability) Undefined behaviour, when 'i' is 123 the pointer arithmetic 'x+i' is out of bounds.\n", errout.str()); ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:4]: (portability) Undefined behaviour, when 'i' is 123 the pointer arithmetic 'x+i' is out of bounds.\n", errout.str());
check("void f(int i) {\n" check("void f(int i) {\n"
" char x[10];\n" " char x[10];\n"
" if (i == -1) {}\n" " if (i == -1) {}\n"
" dostuff(x+i);\n" " dostuff(x+i);\n"
"}"); "}");
ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:4]: (portability) Undefined behaviour, when 'i' is -1 the pointer arithmetic 'x+i' is out of bounds.\n", errout.str()); ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:4]: (portability) Undefined behaviour, when 'i' is -1 the pointer arithmetic 'x+i' is out of bounds.\n", errout.str());
check("void f() {\n" // #6350 - fp when there is cast of buffer check("void f() {\n" // #6350 - fp when there is cast of buffer