From: Bartosz Golaszewski Date: Thu, 26 Jan 2023 12:36:16 +0000 (+0100) Subject: bindings: cxx: remove unused code X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bbc0fe913fdd97e6cffc624e94eb7f8dbcab8413;p=qemu-gpiodev%2Flibgpiod.git bindings: cxx: remove unused code The malloc_deleter struct is a leftover from earlier implementation. Drop it. Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/cxx/line-config.cpp b/bindings/cxx/line-config.cpp index 233ba33..0ab54f4 100644 --- a/bindings/cxx/line-config.cpp +++ b/bindings/cxx/line-config.cpp @@ -23,14 +23,6 @@ namespace { return config; } -struct malloc_deleter -{ - void operator()(void* ptr) - { - ::free(ptr); - } -}; - } /* namespace */ line_config::impl::impl()