aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/xdelta3/state/data_ptr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/xdelta3/state/data_ptr.cpp')
-rw-r--r--library/cpp/xdelta3/state/data_ptr.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/library/cpp/xdelta3/state/data_ptr.cpp b/library/cpp/xdelta3/state/data_ptr.cpp
deleted file mode 100644
index a64af77124..0000000000
--- a/library/cpp/xdelta3/state/data_ptr.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "data_ptr.h"
-
-namespace NXdeltaAggregateColumn {
-
- TDeleter::TDeleter(XDeltaContext* context)
- : Context(context)
- {
- }
-
- void TDeleter::operator()(ui8* ptr) const
- {
- if (!Context) {
- free(ptr);
- return;
- }
- Context->free(Context->opaque, ptr);
- }
-}