aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2025-01-23 17:45:02 +0300
committerthegeorg <thegeorg@yandex-team.com>2025-01-23 18:32:13 +0300
commita6e6da86b7647005f55c75fb2d670e1133fae024 (patch)
tree7fc38e0c5f11823484563be3d71ee1a0dd0eea8b /util
parent8b11fd720733f22796dbcff181d79102d7ebd049 (diff)
downloadydb-a6e6da86b7647005f55c75fb2d670e1133fae024.tar.gz
Fix -Wnon-virtual-dtor in util and gtest wrapper
commit_hash:d8917bc04e6ab10b341000f8bb98d456223f0307
Diffstat (limited to 'util')
-rw-r--r--util/ysaveload_ut.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/ysaveload_ut.cpp b/util/ysaveload_ut.cpp
index 56d75a6e04..fe6b0eec8f 100644
--- a/util/ysaveload_ut.cpp
+++ b/util/ysaveload_ut.cpp
@@ -672,6 +672,7 @@ private:
struct IInterface {
virtual void Save(IOutputStream* out) const = 0;
virtual void Load(IInputStream* in) = 0;
+ virtual ~IInterface() = default;
};
struct TBaseVirtual: IInterface {
TString Str1;