mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 03:09:13 +00:00
Fix pnUUID compilation on Linux
This commit is contained in:
@ -74,7 +74,7 @@ public:
|
||||
int CompareTo( const plUUID * v ) const;
|
||||
bool IsEqualTo( const plUUID * v ) const;
|
||||
bool FromString( const char * str );
|
||||
bool FromString( const plString & str );
|
||||
bool FromString( const plString & str ) { return FromString( str.c_str() ); }
|
||||
bool ToString( plString & out ) const;
|
||||
plString AsString() const;
|
||||
void Read( hsStream * s );
|
||||
|
@ -88,11 +88,6 @@ bool plUUID::FromString( const char * str )
|
||||
return RPC_S_OK == UuidFromString( (unsigned char *)str, (GUID *)this );
|
||||
}
|
||||
|
||||
bool plUUID::FromString( const plString & str )
|
||||
{
|
||||
return FromString( str.c_str() );
|
||||
}
|
||||
|
||||
bool plUUID::ToString( plString & out ) const
|
||||
{
|
||||
out = _TEMP_CONVERT_FROM_LITERAL("");
|
||||
|
Reference in New Issue
Block a user