commit a27857b7706c296f954d224c4d221a0c3988621d
parent 70db31777ca0115a5969c96c1fb1f8f39cbd934a
Author: [email protected] <[email protected]>
Date: Thu, 8 Sep 2016 17:02:20 +0300
Remove unused structs and enums
Diffstat:
1 file changed, 0 insertions(+), 36 deletions(-)
diff --git a/include/kfr/base/types.hpp b/include/kfr/base/types.hpp
@@ -190,42 +190,6 @@ inline datatype operator&(datatype x, datatype y)
return static_cast<datatype>(static_cast<type>(x) | static_cast<type>(y));
}
-enum class accuracy : int
-{
- accuracy = 1,
- speed = 2,
- _accuracy_min = static_cast<int>(accuracy),
- _accuracy_max = static_cast<int>(speed)
-};
-
-enum class archendianness : int
-{
- littleendian = 1,
- bigendian = 2,
- _archendianness_min = static_cast<int>(littleendian),
- _archendianness_max = static_cast<int>(bigendian)
-};
-
-typedef void*(CMT_CDECL* func_allocate)(size_t);
-
-typedef void(CMT_CDECL* func_deallocate)(void*);
-
-struct mem_allocator
-{
- func_allocate allocate;
- func_deallocate deallocate;
- size_t granularity;
- size_t alignment;
-};
-
-struct mem_header
-{
- size_t size;
- mem_allocator* allocator;
- uintptr_t refcount;
- uintptr_t reserved;
-};
-
enum class outputinput_t
{
output,