mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 02:51:27 +00:00
Remove stupid
This commit is contained in:
@ -99,7 +99,7 @@ const wchar_t * GuidToHex (const Uuid & uuid, wchar_t * dst, unsigned chars) {
|
||||
//============================================================================
|
||||
bool GuidFromHex (const uint8_t buf[], unsigned length, Uuid * uuid) {
|
||||
|
||||
ASSERT(length == msizeof(Uuid, data));
|
||||
memcpy(uuid->data, buf, msizeof(Uuid, data));
|
||||
ASSERT(length == sizeof(uuid->data));
|
||||
memcpy(uuid->data, buf, sizeof(uuid->data));
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user