aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/symbols
diff options
context:
space:
mode:
authorjack239 <jack239@yandex-team.com>2023-08-14 11:15:09 +0300
committerjack239 <jack239@yandex-team.com>2023-08-14 12:43:25 +0300
commit79407354116b90693d57b2452f1a19ebd5ce7a40 (patch)
tree4ba9a5ac3132aa41e77033ae0fa8059c44152bb4 /library/python/symbols
parentf6d091c5a6d57dbe4ac04d86237b21dc2cd40c72 (diff)
downloadydb-79407354116b90693d57b2452f1a19ebd5ce7a40.tar.gz
Virtual destructor libraries
Virtual destructor in cpp library
Diffstat (limited to 'library/python/symbols')
-rw-r--r--library/python/symbols/registry/syms.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/python/symbols/registry/syms.h b/library/python/symbols/registry/syms.h
index 5e34d35298..53d684f5d9 100644
--- a/library/python/symbols/registry/syms.h
+++ b/library/python/symbols/registry/syms.h
@@ -3,6 +3,7 @@
namespace NPrivate {
struct ICB {
virtual void Apply(const char* mod, const char* name, void* sym) = 0;
+ virtual ~ICB() = default;
};
void ForEachSymbol(ICB& cb);