From d3aeb30cc067335eae99090a8a13b62aea272c85 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Tue, 9 Mar 2021 02:10:26 +0300 Subject: [PATCH] Remove unused method --- src/Common/PODArray.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Common/PODArray.h b/src/Common/PODArray.h index f64392d9990..ff38a05336b 100644 --- a/src/Common/PODArray.h +++ b/src/Common/PODArray.h @@ -321,11 +321,9 @@ protected: T * t_start() { return reinterpret_cast(this->c_start); } T * t_end() { return reinterpret_cast(this->c_end); } - T * t_end_of_storage() { return reinterpret_cast(this->c_end_of_storage); } const T * t_start() const { return reinterpret_cast(this->c_start); } const T * t_end() const { return reinterpret_cast(this->c_end); } - const T * t_end_of_storage() const { return reinterpret_cast(this->c_end_of_storage); } public: using value_type = T;