J
Jens Thiel
Hi,
is there a workaround for T:arse (other than Convert::ChangeType) in the
following simplified template:
template<class T>
T GetConfig(String* key, T defaultValue)
{
String* value = settings->get_Item(key) ;
if( value )
return T:arse( value );
return defaultValue;
}
the compiler (7.1) says:
error C2825: 'T:arse': cannot form a qualified name
Thanks,
Jens.
is there a workaround for T:arse (other than Convert::ChangeType) in the
following simplified template:
template<class T>
T GetConfig(String* key, T defaultValue)
{
String* value = settings->get_Item(key) ;
if( value )
return T:arse( value );
return defaultValue;
}
the compiler (7.1) says:
error C2825: 'T:arse': cannot form a qualified name
Thanks,
Jens.