When I try to compile this I get this error:
error: expected `;' before 'it'
Why I can't declare this iterator? I don't understand...
#include <list>
template <typename Z>
class LBFuncBase: public LBBaseBlock<Z>
{
void Something() {
std::list<LBBaseBlock< Z >* >::iterator it;
}
}