From: Chris Lattner Date: Wed, 11 Jul 2007 21:50:45 +0000 (+0000) Subject: Fix a release build of clang. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c2a65b8eb06c55d95d34226b6c1d8a46ad6b3a9;p=clang Fix a release build of clang. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39756 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Sema/SemaExpr.cpp b/Sema/SemaExpr.cpp index 4f0935a73d..4685468edd 100644 --- a/Sema/SemaExpr.cpp +++ b/Sema/SemaExpr.cpp @@ -573,7 +573,7 @@ Action::ExprResult Sema::ParseConditionalOp(SourceLocation QuestionLoc, return new ConditionalOperator((Expr*)Cond, (Expr*)LHS, (Expr*)RHS, result); } -inline QualType Sema::DefaultFunctionArrayConversion(QualType t) { +QualType Sema::DefaultFunctionArrayConversion(QualType t) { if (t->isFunctionType()) // C99 6.3.2.1p4 return Context.getPointerType(t); if (const ArrayType *ary = dyn_cast(t.getCanonicalType()))