Hello,
In a template implementation, I am trying to define a list iterator using the following line:
list<AI>::const _iterator it;
However, I get the following error:
expected `;' before "it"
I have included #include <list>
and using namespace std at the beginning of my code. But the problem did not go away. I would apprecate any insight. Thanks.
In a template implementation, I am trying to define a list iterator using the following line:
list<AI>::const _iterator it;
However, I get the following error:
expected `;' before "it"
I have included #include <list>
and using namespace std at the beginning of my code. But the problem did not go away. I would apprecate any insight. Thanks.
Comment