1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Make this static inline to avoid duplicates.

llvm-svn: 184374
This commit is contained in:
Bill Wendling 2013-06-19 22:12:11 +00:00
parent 3cff8f16d4
commit 4e9d259a3d

View File

@ -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);
}