]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/matriz.C
mathed95.diff
[lyx.git] / src / mathed / matriz.C
index 0dfd06e36b2e8d6f2c7e898cb583af5a8c2dad46..7394abede2f06d08f9684974217fccf0f56f9d53 100644 (file)
@@ -1,16 +1,23 @@
 #include <config.h>
 
-#include <cstring>
+#include <cstring> // memcpy
 
 #include "matriz.h"
 
+#ifndef CXX_GLOBAL_CSTD
+using std::memcpy;
+#endif
+namespace {
 
-static inline
+inline
 int odd(int x)
 {
        return (x & 1);
 }
 
+} // namespace anon
+
 
 #define mateq(m1, m2)  memcpy(m1, m2, sizeof(matriz_data))