From 8623ecb263ef2b2e13e34608d90dca52f21fd6db Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 19 Jun 2013 22:12:11 +0000 Subject: Make this static inline to avoid duplicates. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184374 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetOptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/llvm') diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index e4a4b8797a..037a5f2fad 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -209,7 +209,7 @@ namespace llvm { bool operator==(const TargetOptions &LHS, const TargetOptions &RHS); -bool operator!=(const TargetOptions &LHS, const TargetOptions &RHS) { +static inline bool operator!=(const TargetOptions &LHS, const TargetOptions &RHS) { return !(LHS == RHS); } -- cgit v1.2.3