From b71cbb97b730b3b57a2cbb2ecccf5a3e5a690cac Mon Sep 17 00:00:00 2001 From: Radoslaw Zarzynski Date: Thu, 13 Sep 2018 19:14:23 +0200 Subject: [PATCH] common: get_data() of buffer_raw isn't virtual anymore. Signed-off-by: Radoslaw Zarzynski --- src/include/buffer_raw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/buffer_raw.h b/src/include/buffer_raw.h index 262b4a139f60d..2303fc5631e15 100644 --- a/src/include/buffer_raw.h +++ b/src/include/buffer_raw.h @@ -77,7 +77,7 @@ private: raw(const raw &other) = delete; const raw& operator=(const raw &other) = delete; public: - virtual char *get_data() final { + char *get_data() { return data; } virtual raw* clone_empty() = 0; -- 2.39.5