Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/CodeFormatterTest.java')
-rw-r--r--core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/CodeFormatterTest.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/CodeFormatterTest.java b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/CodeFormatterTest.java
index f1032773097..b7786cb6cb7 100644
--- a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/CodeFormatterTest.java
+++ b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/CodeFormatterTest.java
@@ -723,7 +723,7 @@ public class CodeFormatterTest extends BaseUITestCase {
//};
//int
- //foo()
+ //foo ()
//{
// try
// {
@@ -733,7 +733,7 @@ public class CodeFormatterTest extends BaseUITestCase {
// }
//}
//float*
- //bar();
+ //bar ();
//template<typename _CharT, typename _Traits>
// class basic_ios : public ios_base
// {
@@ -1656,7 +1656,7 @@ public class CodeFormatterTest extends BaseUITestCase {
//#define FOREVER for(;;)
//
//void
- //foo()
+ //foo ()
//{
// int i = 0;
// if (true)
@@ -1672,8 +1672,8 @@ public class CodeFormatterTest extends BaseUITestCase {
// BLOCK
// switch (i)
// {
- // case 0:
- // BLOCK
+ // case 0:
+ // BLOCK
// }
//}
public void testCompoundStatementAsMacroGNU_Bug244928() throws Exception {
@@ -2764,13 +2764,13 @@ public class CodeFormatterTest extends BaseUITestCase {
//}
//void
- //foo()
+ //foo ()
//{
// int i;
// for (i = 0; i < 10; i++)
// {
// }
- // foo();
+ // foo ();
//}
public void testForLoopGNU_Bug351399() throws Exception {
fOptions.putAll(DefaultCodeFormatterOptions.getGNUSettings().getMap());

Back to the top