From 621c19d00c3da21f4e2fd34da4528dc8320880ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana?= Date: Thu, 22 Dec 2022 11:02:16 +0100 Subject: [PATCH] style: :art: Remove unused variable in c++ module --- src/cppmdlp | 2 +- src/fimdlp/cfimdlp.pyx | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cppmdlp b/src/cppmdlp index 35c532b..13ebb43 160000 --- a/src/cppmdlp +++ b/src/cppmdlp @@ -1 +1 @@ -Subproject commit 35c532bf1df53e02473b96e35a248107845e488e +Subproject commit 13ebb43bf3fd9fe76aa77527885ad3e488128935 diff --git a/src/fimdlp/cfimdlp.pyx b/src/fimdlp/cfimdlp.pyx index dac8cfc..9b548dd 100644 --- a/src/fimdlp/cfimdlp.pyx +++ b/src/fimdlp/cfimdlp.pyx @@ -11,7 +11,6 @@ cdef extern from "../cppmdlp/CPPFImdlp.h" namespace "mdlp": vector[precision_t] getCutPoints() string version() - cdef class CFImdlp: cdef CPPFImdlp *thisptr def __cinit__(self, algorithm): @@ -25,4 +24,3 @@ cdef class CFImdlp: return self.thisptr.getCutPoints() def get_version(self): return self.thisptr.version() -