1
0
forked from 0ad/0ad

templated friend declaration with ifdef guards

This was SVN commit r88.
This commit is contained in:
Simon Brenner 2003-11-25 02:19:00 +00:00
parent a26fdd8f5c
commit a7b2cfe0fc

View File

@ -104,7 +104,10 @@ struct SGUIBaseSettings
class IGUIObject
{
friend class CGUI;
template <class T> friend class GUI;
#ifndef _MSC_VER
template <class T>
#endif
friend class GUI;
public:
IGUIObject();