aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/IPacketBuffer.hpp
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-11-21 12:10:42 +0000
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-11-28 11:18:35 +0000
commit76c50d81a5ac188a011c18bcf4afd71e35d17976 (patch)
tree4b4cd76b65628ff2dccf86f2e398333a10ff09e1 /src/profiling/IPacketBuffer.hpp
parent9820d3045f6d916b1a214d37dc9e140ea41bb324 (diff)
downloadarmnn-76c50d81a5ac188a011c18bcf4afd71e35d17976.tar.gz
Remove const type qualifiers with no effect
Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com> Change-Id: I3ddd98864eef41c0548ab907a48b025b9154a5a8
Diffstat (limited to 'src/profiling/IPacketBuffer.hpp')
-rw-r--r--src/profiling/IPacketBuffer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profiling/IPacketBuffer.hpp b/src/profiling/IPacketBuffer.hpp
index c61d2327f4..1a97ca741c 100644
--- a/src/profiling/IPacketBuffer.hpp
+++ b/src/profiling/IPacketBuffer.hpp
@@ -18,7 +18,7 @@ class IReadOnlyPacketBuffer // interface used by the read thread
public:
virtual ~IReadOnlyPacketBuffer() {}
- virtual const unsigned char* const GetReadableData() const = 0;
+ virtual const unsigned char* GetReadableData() const = 0;
virtual unsigned int GetSize() const = 0;