]> git.sesse.net Git - movit/commitdiff
Remove an unused function. Found by Clang.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 2 Feb 2013 13:34:21 +0000 (14:34 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 2 Feb 2013 13:34:21 +0000 (14:34 +0100)
deconvolution_sharpen_effect.cpp

index f3998d918e310ff523600252e2f037740d31846c..a90e5cc6f8c1e3463c458e87eb4f451dfdb43a3e 100644 (file)
@@ -240,16 +240,6 @@ MatrixXf central_convolve(const MatrixXf &a, const MatrixXf &b)
        return result;
 }
 
        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()
 }  // namespace
 
 void DeconvolutionSharpenEffect::update_deconvolution_kernel()