diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-05-19 02:12:56 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-05-19 02:12:56 +0000 |
commit | 8069a7323c50c67916ea37c98a27ba0dfef35ae8 (patch) | |
tree | 34d5209054e462f32f19c05ab33d96d13b44c391 | |
parent | 042d6f98ea73d781e43cc17077e8fc84a4201eef (diff) |
Fix a GCC warning about inline functions not being defined. Until r104081, only
the same .cpp file as provided the definitions referenced these functions,
hiding the issue. However, they are clearly no longer inline. Let me know if
there is a reason to move their definitions to the header and make them truly
inline.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@104104 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Sema/Sema.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h index 432e9e701b..ed639350e5 100644 --- a/lib/Sema/Sema.h +++ b/lib/Sema/Sema.h @@ -4267,9 +4267,9 @@ public: SourceLocation questionLoc); /// type checking for vector binary operators. - inline QualType CheckVectorOperands(SourceLocation l, Expr *&lex, Expr *&rex); - inline QualType CheckVectorCompareOperands(Expr *&lex, Expr *&rx, - SourceLocation l, bool isRel); + QualType CheckVectorOperands(SourceLocation l, Expr *&lex, Expr *&rex); + QualType CheckVectorCompareOperands(Expr *&lex, Expr *&rx, + SourceLocation l, bool isRel); /// type checking unary operators (subroutines of ActOnUnaryOp). /// C99 6.5.3.1, 6.5.3.2, 6.5.3.4 |