summaryrefslogtreecommitdiffhomepage
path: root/entity
diff options
context:
space:
mode:
Diffstat (limited to 'entity')
-rw-r--r--entity/types.hpp5
-rw-r--r--entity/util.hpp5
2 files changed, 0 insertions, 10 deletions
diff --git a/entity/types.hpp b/entity/types.hpp
index 055f6de0..2987f2e8 100644
--- a/entity/types.hpp
+++ b/entity/types.hpp
@@ -2,11 +2,6 @@
#include <cstdint>
#include <type_traits>
-namespace Corrade::Containers {
-template<typename T> class BasicStringView;
-using StringView = BasicStringView<const char>;
-} // namespace Corrade::Containers
-
namespace floormat::entities {
enum class erased_field_type : unsigned {
diff --git a/entity/util.hpp b/entity/util.hpp
index 3643866d..d2b32634 100644
--- a/entity/util.hpp
+++ b/entity/util.hpp
@@ -1,11 +1,6 @@
#pragma once
#include <type_traits>
-namespace Corrade::Containers {
-template<typename T> class BasicStringView;
-using StringView = BasicStringView<const char>;
-} // namespace Corrade::Containers
-
namespace floormat::entities {
template<typename T, typename = void> struct pass_by_value : std::bool_constant<std::is_fundamental_v<T>> {};