aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/BlobMemoryPool.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/BlobMemoryPool.h')
-rw-r--r--arm_compute/runtime/BlobMemoryPool.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/arm_compute/runtime/BlobMemoryPool.h b/arm_compute/runtime/BlobMemoryPool.h
index ba97dbd94e..c2e0902493 100644
--- a/arm_compute/runtime/BlobMemoryPool.h
+++ b/arm_compute/runtime/BlobMemoryPool.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2018 ARM Limited.
+ * Copyright (c) 2017-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -38,17 +38,6 @@ namespace arm_compute
// Forward declaration
class IAllocator;
-/** Meta-data information for each blob */
-struct BlobInfo
-{
- BlobInfo(size_t size_ = 0, size_t alignment_ = 0)
- : size(size_), alignment(alignment_)
- {
- }
- size_t size; /**< Blob size */
- size_t alignment; /**< Blob alignment */
-};
-
/** Blob memory pool */
class BlobMemoryPool : public IMemoryPool
{