Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.tests/resources/rewrite/ASTWriterCommentedNameTestSource.awts')
-rw-r--r--core/org.eclipse.cdt.core.tests/resources/rewrite/ASTWriterCommentedNameTestSource.awts4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core.tests/resources/rewrite/ASTWriterCommentedNameTestSource.awts b/core/org.eclipse.cdt.core.tests/resources/rewrite/ASTWriterCommentedNameTestSource.awts
index b6009c399a4..916e7952ba1 100644
--- a/core/org.eclipse.cdt.core.tests/resources/rewrite/ASTWriterCommentedNameTestSource.awts
+++ b/core/org.eclipse.cdt.core.tests/resources/rewrite/ASTWriterCommentedNameTestSource.awts
@@ -30,7 +30,7 @@ class Foo
{
public:
//Test
- char & operator [](unsigned int);
+ char& operator [](unsigned int);
};
//!Commented OperatorName2
@@ -38,7 +38,7 @@ public:
class Foo
{
public:
- char & operator [](unsigned int); //Test
+ char& operator [](unsigned int); //Test
};
//!Commented ConversionName1

Back to the top