From: <bra...@us...> - 2003-07-18 01:33:08
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Source In directory sc8-pr-cvs1:/tmp/cvs-serv31318 Modified Files: Interpolate.cpp Log Message: Removed the InterpolatedData<T> from the first param of the find function to prevent MSVC 2003 from erroring on that line Index: Interpolate.cpp =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Source/Interpolate.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Interpolate.cpp 23 Apr 2003 09:14:23 -0000 1.8 --- Interpolate.cpp 18 Jul 2003 01:33:05 -0000 1.9 *************** *** 95,99 **** template <typename T> ! int InterpolatedData<T>::find(InterpolatedData<T>::vector_t b, T v) const { int lo = 0; int hi = b.size()-1; --- 95,99 ---- template <typename T> ! int InterpolatedData<T>::find(vector_t b, T v) const { int lo = 0; int hi = b.size()-1; |