diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-07-01 18:30:37 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-07-01 18:30:37 +0200 |
commit | 33e902a74465110489c6566f5f0c035ad9432de4 (patch) | |
tree | b2bb4a6d9351100bd2622d221ca1eeda36be9ec7 /compat/shm.h | |
parent | 15c97dd8ddeba8d0f0e80df39320e3789f3fb4b2 (diff) |
compat: drop pre-C++20 macros.hpp header
Diffstat (limited to 'compat/shm.h')
-rw-r--r-- | compat/shm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compat/shm.h b/compat/shm.h index d1363219..5036b335 100644 --- a/compat/shm.h +++ b/compat/shm.h @@ -20,7 +20,7 @@ #endif #include "export.hpp" -#include "macros1.h" +#include "macros.h" class OTR_COMPAT_EXPORT shm_wrapper final { @@ -39,4 +39,6 @@ public: bool unlock(); bool success(); inline void* ptr() { return mem; } + + OTR_DISABLE_MOVE_COPY(shm_wrapper); }; |