diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-14 16:03:57 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-14 16:03:57 +0200 |
commit | b47f6164b82c166afb6d560caa3ffb79db15c7b7 (patch) | |
tree | 69ce2522a25a4775e7749666abae1f456fd77e26 /compat | |
parent | 68a0990512df4721d69b630aafccfb3f53ca7b0e (diff) |
w
Diffstat (limited to 'compat')
-rw-r--r-- | compat/borrowed-ptr-fwd.hpp | 1 | ||||
-rw-r--r-- | compat/borrowed-ptr.inl | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/compat/borrowed-ptr-fwd.hpp b/compat/borrowed-ptr-fwd.hpp index 8386decc..38927cc6 100644 --- a/compat/borrowed-ptr-fwd.hpp +++ b/compat/borrowed-ptr-fwd.hpp @@ -1,6 +1,7 @@ #pragma once namespace floormat { +struct bptr_base; template<typename T> class bptr; template<typename To, typename From> bptr<To> static_pointer_cast(const bptr<From>& p) noexcept; template<typename T> bptr(T* ptr) -> bptr<T>; diff --git a/compat/borrowed-ptr.inl b/compat/borrowed-ptr.inl index 68a545d6..e7b4bbbd 100644 --- a/compat/borrowed-ptr.inl +++ b/compat/borrowed-ptr.inl @@ -1,7 +1,6 @@ #pragma once #include "borrowed-ptr.hpp" #include "compat/assert.hpp" -#include <utility> #define FM_BPTR_DEBUG |