From 76c50d81a5ac188a011c18bcf4afd71e35d17976 Mon Sep 17 00:00:00 2001 From: Matteo Martincigh Date: Thu, 21 Nov 2019 12:10:42 +0000 Subject: Remove const type qualifiers with no effect Signed-off-by: Matteo Martincigh Change-Id: I3ddd98864eef41c0548ab907a48b025b9154a5a8 --- src/profiling/IPacketBuffer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/profiling/IPacketBuffer.hpp') 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; -- cgit v1.2.1