[cfe-commits] r138936 - /cfe/trunk/lib/Serialization/ASTReaderDecl.cpp

Argyrios Kyrtzidis akyrtzi at gmail.com
Wed Aug 31 20:07:12 PDT 2011


Author: akirtzidis
Date: Wed Aug 31 22:07:11 2011
New Revision: 138936

URL: http://llvm.org/viewvc/llvm-project?rev=138936&view=rev
Log:
Fix "multi-line comment" compiler error.

Modified:
    cfe/trunk/lib/Serialization/ASTReaderDecl.cpp

Modified: cfe/trunk/lib/Serialization/ASTReaderDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Serialization/ASTReaderDecl.cpp?rev=138936&r1=138935&r2=138936&view=diff
==============================================================================
--- cfe/trunk/lib/Serialization/ASTReaderDecl.cpp (original)
+++ cfe/trunk/lib/Serialization/ASTReaderDecl.cpp Wed Aug 31 22:07:11 2011
@@ -1840,19 +1840,19 @@
       // warnings for them when the module was created. We only want to warn for
       // duplicates between non-dependent modules:
       //
-      //   MT
-      //  /  \
-      // ML  MR
+      //   MT     //
+      //  /  \    //
+      // ML  MR   //
       //
       // We want to warn for duplicates between ML and MR,not between ML and MT.
       //
       // FIXME: We should not warn for duplicates in diamond:
       //
-      //   MT
-      //  /  \
-      // ML  MR
-      //  \  /
-      //   MB
+      //   MT     //
+      //  /  \    //
+      // ML  MR   //
+      //  \  /    //
+      //   MB     //
       //
       // If there are duplicates in ML/MR, there will be warning when creating
       // MB *and* when importing MB. We should not warn when importing.





More information about the cfe-commits mailing list