hi everybody,

i am back with my vector problems again.

This time i am trying to declare a 3-dimesional vector variable.

when i declare a 2-dimensional vector with

std::vector< std::vector<float> > , there are no problems.

But when i make it std::vector< std::vector< std::vector<float> > > , my VC++ compiler keeps giving me about 60 lengthy warnings.

Does anybody have a remedy to this problem? Please help me.

Thank you.