mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
16 lines
470 B
C++
16 lines
470 B
C++
#include "non-member-out-of-line.h"
|
|
|
|
LoadableIntWrapper operator+(LoadableIntWrapper lhs, LoadableIntWrapper rhs) {
|
|
return LoadableIntWrapper{.value = lhs.value + rhs.value};
|
|
}
|
|
|
|
bool operator==(const ClassWithOperatorEqualsParamUnnamed &lhs,
|
|
const ClassWithOperatorEqualsParamUnnamed &rhs) {
|
|
return false;
|
|
}
|
|
|
|
bool operator!=(const ClassWithOperatorEqualsParamUnnamed &,
|
|
const ClassWithOperatorEqualsParamUnnamed &) {
|
|
return true;
|
|
}
|