aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2008-09-04 21:54:53 +0000
committerDaniel Dunbar <daniel@zuster.org>2008-09-04 21:54:53 +0000
commitab49c0bb0ff2f8834a59d37831be20320a7e5481 (patch)
treea9b21cc0b0855b58dd9c45db91858d8c864348e2
parentfe2b2c08984f861f82339138302689480c658ecd (diff)
Fix unintended use of doxygen comment strings.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55805 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/SemaObjC/protocol-implementation-inherited.m12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/SemaObjC/protocol-implementation-inherited.m b/test/SemaObjC/protocol-implementation-inherited.m
index 1e26c663c2..42c4995809 100644
--- a/test/SemaObjC/protocol-implementation-inherited.m
+++ b/test/SemaObjC/protocol-implementation-inherited.m
@@ -7,7 +7,7 @@
@interface A <P0>
@end
-/// Interface conforms to inherited protocol
+// Interface conforms to inherited protocol
@interface B0 : A <P0>
@end
@@ -15,8 +15,8 @@
@implementation B0
@end
-/// Interface conforms to a protocol which extends another. The other
-/// protocol is inherited, and extended methods are implemented.
+// Interface conforms to a protocol which extends another. The other
+// protocol is inherited, and extended methods are implemented.
@protocol P1 <P0>
-foo;
@@ -29,8 +29,8 @@
-foo {};
@end
-/// Interface conforms to a protocol whose methods are provided by an
-/// alternate inherited protocol.
+// Interface conforms to a protocol whose methods are provided by an
+// alternate inherited protocol.
@protocol P2
-bar;
@@ -42,7 +42,7 @@
@implementation B2
@end
-/// Interface conforms to a protocol whose methods are provided by a base class.
+// Interface conforms to a protocol whose methods are provided by a base class.
@interface A1
-bar;