small conversion problem

Started by
11 comments, last by mdias 19 years ago
I tried ...didnt worked , thx anyway .

I think i will need a new way of doing what im doing .

( i still just need to be aable to add some functions ( they all return void, but all takes different argument types ) to a container i can easyli "parse" .

hummmm :p
Advertisement
Quote:Original post by Kamikaze15
yes, but I've tried doing this without success:
CMyClass<CMyClass<int>> blah;


That's because the >> in <CMyClass<int>> get's interpreted as operator>>. You need to put a space between them, like so:
<CMyClass<int> >

There are plans to change this so it's not an issue in the next version of c++.
Humm, that makes sense, thanks for clearing that up to me.

This topic is closed to new replies.

Advertisement