From 1c2a65b8eb06c55d95d34226b6c1d8a46ad6b3a9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 11 Jul 2007 21:50:45 +0000 Subject: [PATCH] Fix a release build of clang. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39756 91177308-0d34-0410-b5e6-96231b3b80d8 --- Sema/SemaExpr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())) -- 2.40.0