hello,
i have a simple 'point'-template class with 2 parameter standard constructor! i wanna instantiate like this :
point<unsigned int> myPoint (x = 0, y = 0);
the compiler (vc++ 6 sp5) thinks 'myPoint' is a function with 2 parameters returning point<unsigned int> instead of a point instance!! ;(
so what can i do to tell the compiler it's an instance and no function! please help!!
thanks a lot,
haukero