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 /options | |
parent | 15c97dd8ddeba8d0f0e80df39320e3789f3fb4b2 (diff) |
compat: drop pre-C++20 macros.hpp header
Diffstat (limited to 'options')
-rw-r--r-- | options/base-value.hpp | 1 | ||||
-rw-r--r-- | options/globals.hpp | 2 | ||||
-rw-r--r-- | options/group.hpp | 2 | ||||
-rw-r--r-- | options/metatype.cpp | 1 | ||||
-rw-r--r-- | options/slider.hpp | 1 | ||||
-rw-r--r-- | options/value.hpp | 1 |
6 files changed, 2 insertions, 6 deletions
diff --git a/options/base-value.hpp b/options/base-value.hpp index 81da0513..7b65d524 100644 --- a/options/base-value.hpp +++ b/options/base-value.hpp @@ -6,7 +6,6 @@ #include "metatype.hpp" #include "export.hpp" -#include "compat/macros.hpp" #include "value-traits.hpp" #include <utility> diff --git a/options/globals.hpp b/options/globals.hpp index 7af6533d..af242dc9 100644 --- a/options/globals.hpp +++ b/options/globals.hpp @@ -1,7 +1,7 @@ #pragma once #include "export.hpp" -#include "compat/macros.hpp" +#include "compat/macros.h" #include <optional> diff --git a/options/group.hpp b/options/group.hpp index 93299b6e..11bab965 100644 --- a/options/group.hpp +++ b/options/group.hpp @@ -4,7 +4,7 @@ #include "compat/base-path.hpp" #include "compat/library-path.hpp" -#include "compat/macros.hpp" +#include "compat/macros.h" #include "compat/qhash.hpp" #include "export.hpp" diff --git a/options/metatype.cpp b/options/metatype.cpp index 7962b81b..7430c00a 100644 --- a/options/metatype.cpp +++ b/options/metatype.cpp @@ -1,5 +1,4 @@ #include <QMetaType> -#include "compat/macros.hpp" namespace options::detail { diff --git a/options/slider.hpp b/options/slider.hpp index 5d21bf0f..1e721ae0 100644 --- a/options/slider.hpp +++ b/options/slider.hpp @@ -8,7 +8,6 @@ #pragma once #include "export.hpp" -#include "compat/macros.hpp" #include <type_traits> diff --git a/options/value.hpp b/options/value.hpp index 4476f8b7..c752d497 100644 --- a/options/value.hpp +++ b/options/value.hpp @@ -14,7 +14,6 @@ #include "slider.hpp" #include "base-value.hpp" #include "value-traits.hpp" -#include "compat/macros.hpp" #include <type_traits> #include <utility> |