From: Nico Weber Date: Mon, 12 Jan 2015 21:22:27 +0000 (+0000) Subject: Don't use a doc comment in a function body. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=274cecb58d06e93bcb794f0782f0d19740f7bf15;p=clang Don't use a doc comment in a function body. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@225701 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGCXX.cpp b/lib/CodeGen/CGCXX.cpp index e467891d10..9f0e67e421 100644 --- a/lib/CodeGen/CGCXX.cpp +++ b/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; }