missing return type

This commit is contained in:
ganovelli 2007-05-08 18:56:04 +00:00
parent e77e2dcf26
commit 2af382d25d
1 changed files with 4 additions and 4 deletions

View File

@ -21,13 +21,13 @@ class ImporterTS{
static FILE *& F(){static FILE * f; return f;} static FILE *& F(){static FILE * f; return f;}
inline static ReadPos( Point3<double> &p){ inline static void ReadPos( Point3<double> &p){
fscanf(F(),"%lg %lg %lg",&p[0],&p[1],&p[2]); fscanf(F(),"%lg %lg %lg",&p[0],&p[1],&p[2]);
} }
inline static ReadPos( Point3<float> &p){ inline static void ReadPos( Point3<float> &p){
fscanf(F(),"%f %f %f",&p[0],&p[1],&p[2]); fscanf(F(),"%f %f %f",&p[0],&p[1],&p[2]);
} }
inline static ReadPos( Point4<ScalarType> &p){ inline static void ReadPos( Point4<ScalarType> &p){
fscanf(F(),"%g %g %g %g",&p[0],&p[1],&p[2],&p[3]); fscanf(F(),"%g %g %g %g",&p[0],&p[1],&p[2],&p[3]);
} }
public: public:
@ -81,6 +81,6 @@ static int Open( Tetramesh & m, const char * filename )
} }
};// end class };// end class
};// end of io };// end of io
};// end of tri };// end of tetra
};// end of vcg };// end of vcg
#endif #endif