]> granicus.if.org Git - clang/commitdiff
Fix a release build of clang.
authorChris Lattner <sabre@nondot.org>
Wed, 11 Jul 2007 21:50:45 +0000 (21:50 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 11 Jul 2007 21:50:45 +0000 (21:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39756 91177308-0d34-0410-b5e6-96231b3b80d8

Sema/SemaExpr.cpp

index 4f0935a73d6118cc97c967c3376a1782d8a8eb6b..4685468eddf5c905d6352ed1a884ecb2adb55a2f 100644 (file)
@@ -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<ArrayType>(t.getCanonicalType()))