diff options
Diffstat (limited to 'lib/CodeGen/CGCXX.cpp')
-rw-r--r-- | lib/CodeGen/CGCXX.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGCXX.cpp b/lib/CodeGen/CGCXX.cpp index d55d0f81bc..fe61001709 100644 --- a/lib/CodeGen/CGCXX.cpp +++ b/lib/CodeGen/CGCXX.cpp @@ -28,7 +28,7 @@ using namespace CodeGen; static void mangleDeclContextInternal(const DeclContext *D, std::string &S) { // FIXME: Should ObjcMethodDecl have the TranslationUnitDecl as its parent? - assert(!D->getParent() || isa<TranslationUnitDecl>(D->getParent()) && + assert((!D->getParent() || isa<TranslationUnitDecl>(D->getParent())) && "Only one level of decl context mangling is currently supported!"); if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(D)) { |