diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-14 15:37:17 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-14 15:37:44 +0100 |
commit | f3dccbda61f4880d1ad8be4e721a3e0d14023c5e (patch) | |
tree | 9cbde9a63433f062c530f3862900526f454a9f96 /compat | |
parent | e25f9a8b813a5de01d3c748a1710ffdc6f9935ec (diff) |
compat/prelude: include Magnum color literals
Diffstat (limited to 'compat')
-rw-r--r-- | compat/prelude.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compat/prelude.hpp b/compat/prelude.hpp index ccc71f06..f64523c4 100644 --- a/compat/prelude.hpp +++ b/compat/prelude.hpp @@ -4,11 +4,13 @@ namespace Corrade::Containers::Literals {} namespace Corrade::Containers {} namespace Corrade::Utility::Path {} namespace Corrade::Utility { class Debug; class Error; } +namespace Magnum::Math::Literals {} namespace Magnum {} namespace floormat { using namespace ::Magnum; using namespace ::Corrade::Containers; using namespace ::Corrade::Containers::Literals; + using namespace ::Magnum::Math::Literals; using Debug [[maybe_unused]] = ::Corrade::Utility::Debug; using Error [[maybe_unused]] = ::Corrade::Utility::Error; namespace Path = Corrade::Utility::Path; // NOLINT(misc-unused-alias-decls) |