2
3
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:
2012-02-09 21:29:23 -08:00
parent 77cd055a27
commit 247749934b
3 changed files with 2 additions and 7 deletions

View File

@ -1129,8 +1129,8 @@ void StatusCallback(void *param)
}
}
delete [] statusUrl;
curl_easy_cleanup(hCurl);
delete [] statusUrl;
s_statusEvent.Signal();
}

View File

@ -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 );

View File

@ -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("");