diff options
Diffstat (limited to 'libcutl/tests/compiler/cxx-indenter/output.std')
-rw-r--r-- | libcutl/tests/compiler/cxx-indenter/output.std | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/libcutl/tests/compiler/cxx-indenter/output.std b/libcutl/tests/compiler/cxx-indenter/output.std deleted file mode 100644 index 79e74f4..0000000 --- a/libcutl/tests/compiler/cxx-indenter/output.std +++ /dev/null @@ -1,103 +0,0 @@ -if (true) -{ - // Hello there - // - a (); -} -else -{ - b (); -} - -if (true) - // Hello there - // - a (); -else - b (); - -if (false) -{ - if (true) - { - // test - } - else - { - // test - b (); - } -} - -namespace a -{ - void f (); -} - -#if defined(__HP_aCC) && __HP_aCC <= 39999 -#include <foo.h> -#endif - -namespace b -{ - void f (); -} - -do - f (); -while (false); - -do -{ - f (); -} -while (false); - -do -{ - if (f ()) - { - g (); - } -} -while (false); - -do -{ - do - f (); - while (false); -} -while (false); - -do -{ - do - { - f (); - } - while (false); -} -while (false); - -{ - f ("CREATE TABLE \"test\" (" - "'id'," - "'name')"); -} - -namespace N -{ - static int i[] = - { - { - 0, - 0 - }, - { - 1, - 1 - } - }; -} - |