[cfe-commits] r55805 - /cfe/trunk/test/SemaObjC/protocol-implementation-inherited.m

Daniel Dunbar daniel at zuster.org
Thu Sep 4 14:54:54 PDT 2008


Author: ddunbar
Date: Thu Sep  4 16:54:53 2008
New Revision: 55805

URL: http://llvm.org/viewvc/llvm-project?rev=55805&view=rev
Log:
Fix unintended use of doxygen comment strings.

Modified:
    cfe/trunk/test/SemaObjC/protocol-implementation-inherited.m

Modified: cfe/trunk/test/SemaObjC/protocol-implementation-inherited.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/protocol-implementation-inherited.m?rev=55805&r1=55804&r2=55805&view=diff

==============================================================================
--- cfe/trunk/test/SemaObjC/protocol-implementation-inherited.m (original)
+++ cfe/trunk/test/SemaObjC/protocol-implementation-inherited.m Thu Sep  4 16:54:53 2008
@@ -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;





More information about the cfe-commits mailing list