Skip to content

Commit 8b89210

Browse files
committed
Merge remote-tracking branch 'couchbase/morpheus' into master
* couchbase/morpheus: MB-69813: Don't check C++ standard on WIN32 Change-Id: Iaaec305a57f2cbd64284d308038ac71445824025
2 parents 13b5419 + 98a9769 commit 8b89210

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/global_new_replacement.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#include <cstdlib>
4141
#include <new>
4242

43-
#if __cplusplus > 202302L
43+
#if !defined(WIN32) && (__cplusplus > 202302L)
4444
#warning Only operator new/delete up to C++23 overridden. If later standards add additional overrides they should be added here.
4545
#endif
4646

0 commit comments

Comments
 (0)