mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
BEGIN_PUBLIC
Microsoft has updated the winrt library END_PUBLC PiperOrigin-RevId: 387168248
This commit is contained in:
+2
-4
@@ -42,7 +42,7 @@ struct Status {
|
||||
kWifiLanError,
|
||||
kPayloadUnknown,
|
||||
};
|
||||
Value value {kError};
|
||||
Value value{kError};
|
||||
bool Ok() const { return value == kSuccess; }
|
||||
};
|
||||
|
||||
@@ -50,9 +50,7 @@ inline bool operator==(const Status& a, const Status& b) {
|
||||
return a.value == b.value;
|
||||
}
|
||||
|
||||
inline bool operator!=(const Status& a, const Status& b) {
|
||||
return !(a == b);
|
||||
}
|
||||
inline bool operator!=(const Status& a, const Status& b) { return !(a == b); }
|
||||
|
||||
} // namespace connections
|
||||
} // namespace nearby
|
||||
|
||||
Reference in New Issue
Block a user