summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/support/win32/locale_win32.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/support/win32/locale_win32.h b/include/support/win32/locale_win32.h
index aebfff22e..68682c962 100644
--- a/include/support/win32/locale_win32.h
+++ b/include/support/win32/locale_win32.h
@@ -46,6 +46,10 @@ public:
return __left.__locale == nullptr && __right == 0;
}
+ friend bool operator==(const locale_t& __left, long long __right) {
+ return __left.__locale == nullptr && __right == 0;
+ }
+
friend bool operator==(const locale_t& __left, std::nullptr_t) {
return __left.__locale == nullptr;
}
@@ -66,6 +70,10 @@ public:
return !(__left == __right);
}
+ friend bool operator!=(const locale_t& __left, long long __right) {
+ return !(__left == __right);
+ }
+
friend bool operator!=(const locale_t& __left, std::nullptr_t __right) {
return !(__left == __right);
}