Skip to content

Commit 3e4669f

Browse files
authored
change common.hpp to avoid warnings
Changed the code to disable use of C++26 features. The way to restore that is probably adding/removing warning suppression in `suppress_push.hpp` and `suppress_pop.hpp` but I think this PR isn't the place to do that.
1 parent be46000 commit 3e4669f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/beman/execution26/detail/common.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
// ----------------------------------------------------------------------------
88

9-
#if defined(__cpp_deleted_function)
9+
#if defined(disabled__cpp_deleted_function)
1010
#define BEMAN_EXECUTION26_DELETE(msg) delete (msg)
1111
#else
1212
#define BEMAN_EXECUTION26_DELETE(msg) delete

0 commit comments

Comments
 (0)