added const to method.

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

View File

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