summaryrefslogtreecommitdiffhomepage
path: root/compat/defs.hpp
blob: 585c45d10cfa2b57197249f3db4bd6c065a6249c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#pragma once

#ifdef _MSC_VER
#   define fm_FUNCTION_NAME __FUNCSIG__
#else
#   define fm_FUNCTION_NAME __PRETTY_FUNCTION__
#endif

#define fm_begin(...) [&]{__VA_ARGS__}()

#define fm_DECLARE_DEPRECATED_COPY_ASSIGNMENT(type)                                 \
    [[deprecated, maybe_unused]] type(const type&) noexcept = default;              \
    [[deprecated, maybe_unused]] type& operator=(const type&) noexcept = default

#define fm_DECLARE_DEFAULT_COPY_ASSIGNMENT(type)                                    \
    [[maybe_unused]] constexpr type(const type&) noexcept = default;                \
    [[maybe_unused]] constexpr type& operator=(const type&) noexcept = default

#define fm_DECLARE_DEFAULT_COPY_ASSIGNMENT_(type)                                   \
    [[maybe_unused]] type(const type&) noexcept = default;                          \
    [[maybe_unused]] type& operator=(const type&) noexcept = default

#define fm_DECLARE_DELETED_COPY_ASSIGNMENT(type)                                    \
    type(const type&) = delete;                                                     \
    type& operator=(const type&) = delete

#define fm_DECLARE_DELETED_MOVE_ASSIGNMENT(type)                                    \
    type(type&&) = delete;                                                          \
    type& operator=(type&&) = delete

#define fm_DECLARE_DEPRECATED_MOVE_ASSIGNMENT(type)                                 \
    [[deprecated, maybe_unused]] type(type&&) = default;                            \
    [[deprecated, maybe_unused]] type& operator=(type&&) = default

#define fm_DECLARE_DEFAULT_MOVE_ASSIGNMENT(type)                                    \
    [[maybe_unused]] constexpr type(type&&) noexcept = default;                     \
    [[maybe_unused]] constexpr type& operator=(type&&) noexcept = default

#define fm_DECLARE_DEFAULT_MOVE_ASSIGNMENT_(type)                                   \
    [[maybe_unused]] type(type&&) noexcept = default;                               \
    [[maybe_unused]] type& operator=(type&&) noexcept = default

#define fm_DECLARE_DEFAULT_MOVE_COPY_ASSIGNMENTS(type)                              \
    [[maybe_unused]] fm_DECLARE_DEFAULT_MOVE_ASSIGNMENT(type);                      \
    [[maybe_unused]] fm_DECLARE_DEFAULT_COPY_ASSIGNMENT(type)

#define fm_DECLARE_DEFAULT_MOVE_COPY_ASSIGNMENTS_(type)                             \
    [[maybe_unused]] fm_DECLARE_DEFAULT_MOVE_ASSIGNMENT_(type);                     \
    [[maybe_unused]] fm_DECLARE_DEFAULT_COPY_ASSIGNMENT_(type)

#ifdef _MSC_VER
#   define fm_noinline __declspec(noinline)
#else
#   define fm_noinline __attribute__((noinline))
#endif