Skip to content

Commit

Permalink
b
Browse files Browse the repository at this point in the history
  • Loading branch information
sthalik committed May 5, 2024
1 parent 3d59faf commit 88f6fe2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions compat/defs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
[[maybe_unused]] fm_DECLARE_DEFAULT_MOVE_ASSIGNMENT_(type); \
[[maybe_unused]] fm_DECLARE_DEFAULT_COPY_ASSIGNMENT_(type)

#define fm_DECLARE_DELETED_COPY_MOVE_ASSIGNMENTS(type) \
fm_DECLARE_DELETED_COPY_ASSIGNMENT(type); \
fm_DECLARE_DELETED_MOVE_ASSIGNMENT(type)

#ifdef _MSC_VER
# define fm_noinline __declspec(noinline)
#else
Expand Down

0 comments on commit 88f6fe2

Please sign in to comment.