From 3ad6da0ee1ecd6b3b016d310f4d8fedff79c2914 Mon Sep 17 00:00:00 2001
From: Thomas Habets <thomas@habets.se>
Date: Sat, 29 Aug 2020 22:35:50 +0100
Subject: fft&filter: Remove malloc_complex/free

---
 gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h | 6 ------
 gr-fft/python/fft/bindings/fft_python.cc                   | 9 +--------
 2 files changed, 1 insertion(+), 14 deletions(-)

(limited to 'gr-fft/python/fft')

diff --git a/gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h b/gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h
index fabe5afd47..0f37f06b93 100644
--- a/gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h
+++ b/gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h
@@ -106,9 +106,3 @@ static const char* __doc_gr_fft_fft_real_rev_nthreads = R"doc()doc";
 
 
 static const char* __doc_gr_fft_fft_real_rev_execute = R"doc()doc";
-
-
-static const char* __doc_gr_fft_malloc_complex = R"doc()doc";
-
-
-static const char* __doc_gr_fft_free = R"doc()doc";
diff --git a/gr-fft/python/fft/bindings/fft_python.cc b/gr-fft/python/fft/bindings/fft_python.cc
index 9e8a4e889a..268edfaa24 100644
--- a/gr-fft/python/fft/bindings/fft_python.cc
+++ b/gr-fft/python/fft/bindings/fft_python.cc
@@ -14,7 +14,7 @@
 /* BINDTOOL_GEN_AUTOMATIC(0)                                                       */
 /* BINDTOOL_USE_PYGCCXML(0)                                                        */
 /* BINDTOOL_HEADER_FILE(fft.h)                                        */
-/* BINDTOOL_HEADER_FILE_HASH(4402b26d42b6210cd744a09ce7f6ffd6)                     */
+/* BINDTOOL_HEADER_FILE_HASH(ebbb274b1b433908749981712d96b3e9)                     */
 /***********************************************************************************/
 
 #include <pybind11/complex.h>
@@ -153,11 +153,4 @@ void bind_fft(py::module& m)
         .def("execute", &fft_real_rev::execute, D(fft_real_rev, execute))
 
         ;
-
-
-    m.def(
-        "malloc_complex", &::gr::fft::malloc_complex, py::arg("size"), D(malloc_complex));
-
-
-    m.def("free", &::gr::fft::free, py::arg("b"), D(free));
 }
-- 
cgit v1.2.3