mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 10:37:41 -04:00
Fix pnUUID compilation on Linux
This commit is contained in:
@ -1129,8 +1129,8 @@ void StatusCallback(void *param)
|
||||
}
|
||||
}
|
||||
|
||||
delete [] statusUrl;
|
||||
curl_easy_cleanup(hCurl);
|
||||
delete [] statusUrl;
|
||||
|
||||
s_statusEvent.Signal();
|
||||
}
|
||||
|
@ -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