diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-01-12 21:22:27 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-01-12 21:22:27 +0000 |
commit | f867c17ab5cecca34d189ec9cf3f825212b7e69b (patch) | |
tree | fc7e10b941e88e426e5039edb44eeb75f3642f2a /clang/lib/CodeGen | |
parent | 06d5589a842cd9d23ac4046fc606d0f6f4ae30ae (diff) | |
download | bcm5719-llvm-f867c17ab5cecca34d189ec9cf3f825212b7e69b.tar.gz bcm5719-llvm-f867c17ab5cecca34d189ec9cf3f825212b7e69b.zip |
Don't use a doc comment in a function body.
llvm-svn: 225701
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGCXX.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGCXX.cpp b/clang/lib/CodeGen/CGCXX.cpp index e467891d107..9f0e67e4217 100644 --- a/clang/lib/CodeGen/CGCXX.cpp +++ b/clang/lib/CodeGen/CGCXX.cpp @@ -167,9 +167,9 @@ bool CodeGenModule::TryEmitDefinitionAsAlias(GlobalDecl AliasDecl, } if (!InEveryTU) { - /// If we don't have a definition for the destructor yet, don't - /// emit. We can't emit aliases to declarations; that's just not - /// how aliases work. + // If we don't have a definition for the destructor yet, don't + // emit. We can't emit aliases to declarations; that's just not + // how aliases work. if (Ref->isDeclaration()) return true; } |