error C2299: 'ATL::CComPtrT::operator =' : behavior change: an explicit specializat

Started by
1 comment, last by Nit3Mare 16 years, 6 months ago
ok im pretty new to programming, and i try to compile a the source code, i got on another site, of a game but i always get this error now: error C2299: 'ATL::CComPtr<T>::operator =' : behavior change: an explicit specialization cannot be a copy constructor or copy assignment operator here is a link to my build log. Build Log if someone can help me i would really appreciate it im just stumped at this point...
Advertisement
struct foo{   template <typename T>   foo& operator=(const T& rhs);   template <> // remove this line to fix error.   foo& operator=(const foo& rhs); // error C2299 here.};
Arguing on the internet is like running in the Special Olympics: Even if you win, you're still retarded.[How To Ask Questions|STL Programmer's Guide|Bjarne FAQ|C++ FAQ Lite|C++ Reference|MSDN]
thanks that worked perfectly, now i just have to get 1 more header file and i can compile the thing together ;p

This topic is closed to new replies.

Advertisement