diff --git a/Numeric/GmshMatrix.h b/Numeric/GmshMatrix.h index eb2e68c2ea2bc3825c7787ec80ce6029c10aa76a..e78be16628305a5607ef5c7b0432b00714975477 100644 --- a/Numeric/GmshMatrix.h +++ b/Numeric/GmshMatrix.h @@ -6,7 +6,6 @@ #ifndef _GMSH_MATRIX_H_ #define _GMSH_MATRIX_H_ -#include <stdio.h> #include <math.h> #include "GmshConfig.h" #include "GmshMessage.h" @@ -205,17 +204,6 @@ class gmshMatrix } #endif ; - void print() - { - for(int i = 0; i < size1(); i++){ - for(int j = 0; j < size2(); j++){ - printf(" %12.5e"); - } - printf("\n"); - } - return false; - } - ; }; #endif