mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 03:09:13 +00:00
Fix several errors and warnings from GCC compilation
This commit is contained in:
@ -106,13 +106,13 @@ bool plUUID::FromString( const char * str )
|
||||
return true;
|
||||
}
|
||||
|
||||
bool plUUID::ToStdString( std::string & out ) const
|
||||
bool plUUID::ToString( plString & out ) const
|
||||
{
|
||||
uuid_t g;
|
||||
plUUIDHelper::CopyToNative( g, this );
|
||||
char buf[40];
|
||||
uuid_unparse( g, buf );
|
||||
out = buf;
|
||||
out = _TEMP_CONVERT_FROM_LITERAL( buf );
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user