ctmatutils.h was missing an #include guard

This commit is contained in:
Ray Speth 2012-02-04 16:45:20 +00:00
parent 7e6b232978
commit d29e31b039

View file

@ -1,3 +1,6 @@
#ifndef CT_MATUTILS_H
#define CT_MATUTILS_H
const double Undef = -999.123;
//const double DERR = -999.999;
@ -40,5 +43,4 @@ inline char* getString(const mxArray* p) {
return input_buf;
}
#endif