]> granicus.if.org Git - clang/commitdiff
Fix "multi-line comment" compiler error.
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Thu, 1 Sep 2011 03:07:11 +0000 (03:07 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Thu, 1 Sep 2011 03:07:11 +0000 (03:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138936 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Serialization/ASTReaderDecl.cpp

index 058803cafbec3a2e4e8c24a90041b5f0a6cad048..ac5a973695cbb98ee8b2a9c328c3363252182283 100644 (file)
@@ -1840,19 +1840,19 @@ namespace {
       // 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.