From 082dd40edbe56c7372ffb6d582ec04d2e7b54a72 Mon Sep 17 00:00:00 2001 From: Pascal Bauer Date: Fri, 16 Dec 2022 13:24:59 +0100 Subject: [PATCH] added class name before virtual method Signed-off-by: Pascal Bauer --- fpga/lib/ips/dma.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpga/lib/ips/dma.cpp b/fpga/lib/ips/dma.cpp index d159362d1..4b2cb4ad6 100644 --- a/fpga/lib/ips/dma.cpp +++ b/fpga/lib/ips/dma.cpp @@ -207,7 +207,7 @@ bool Dma::reset() Dma::~Dma() { - reset(); + Dma::reset(); } bool Dma::memcpy(const MemoryBlock &src, const MemoryBlock &dst, size_t len)