diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-09-01 03:07:11 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-09-01 03:07:11 +0000 |
commit | fa77cbab63436aeb528099e0734599c117f7c80a (patch) | |
tree | 6f744ddcd6128a092184fe4726c41acb1380b540 /lib/Serialization/ASTReaderDecl.cpp | |
parent | 45d3d716622f12f9d8e77f2e4c8ffddf4bfe3559 (diff) |
Fix "multi-line comment" compiler error.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138936 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Serialization/ASTReaderDecl.cpp')
-rw-r--r-- | lib/Serialization/ASTReaderDecl.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/Serialization/ASTReaderDecl.cpp b/lib/Serialization/ASTReaderDecl.cpp index 058803cafb..ac5a973695 100644 --- a/lib/Serialization/ASTReaderDecl.cpp +++ b/lib/Serialization/ASTReaderDecl.cpp @@ -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. |