From: Daniel Dunbar Date: Tue, 11 Nov 2008 01:16:00 +0000 (+0000) Subject: Fix Release-Asserts warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3ac5434ab936f092b8cc48349cb01db3a1e1c76;p=clang Fix Release-Asserts warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59013 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index 52abf43a0e..e84cc4b307 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -1811,6 +1811,7 @@ QualType ASTContext::getFromTargetType(unsigned Type) const { } assert(false && "Unhandled TargetInfo::IntType value"); + return QualType(); } //===----------------------------------------------------------------------===//