From f7e302b40026b15d1606269324a31953a1eadb80 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 2 Feb 2013 14:34:21 +0100 Subject: [PATCH] Remove an unused function. Found by Clang. --- deconvolution_sharpen_effect.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/deconvolution_sharpen_effect.cpp b/deconvolution_sharpen_effect.cpp index f3998d9..a90e5cc 100644 --- a/deconvolution_sharpen_effect.cpp +++ b/deconvolution_sharpen_effect.cpp @@ -240,16 +240,6 @@ MatrixXf central_convolve(const MatrixXf &a, const MatrixXf &b) return result; } -void print_matrix(const MatrixXf &m) -{ - for (int y = 0; y < m.rows(); ++y) { - for (int x = 0; x < m.cols(); ++x) { - printf("%7.4f ", m(x, y)); - } - printf("\n"); - } -} - } // namespace void DeconvolutionSharpenEffect::update_deconvolution_kernel() -- 2.39.2