added const to method.

This commit is contained in:
Marco Di Benedetto 2009-09-03 14:48:08 +00:00
parent b4b6e596eb
commit ae09d558f0
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ public:
char &VFi(const int j){(void)j; static char z=0; assert(0); return z;};
char &FFi(const int j){(void)j; static char z=0; assert(0); return z;};
const char &cVFi(const int j){(void)j; static char z=0; return z;};
const char &cFFi(const int j){(void)j; static char z=0; return z;};
const char &cFFi(const int j) const {(void)j; static char z=0; return z;};
template <class RightF>
void ImportLocal(const RightF & rightF){ T::ImportLocal(rightF);}
inline void Alloc(const int & ns){T::Alloc(ns);}