From: Radoslaw Zarzynski Date: Thu, 13 Sep 2018 17:14:23 +0000 (+0200) Subject: common: get_data() of buffer_raw isn't virtual anymore. X-Git-Tag: v14.0.1~273^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F24031%2Fhead;p=ceph.git common: get_data() of buffer_raw isn't virtual anymore. Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/include/buffer_raw.h b/src/include/buffer_raw.h index 262b4a139f60..2303fc5631e1 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;