GCC 4.6.1 fix
This commit is contained in:
@@ -1454,9 +1454,12 @@ S32 LLSDBinaryFormatter::format(const LLSD& data, std::ostream& ostr, U32 option
|
|||||||
}
|
}
|
||||||
|
|
||||||
case LLSD::TypeUUID:
|
case LLSD::TypeUUID:
|
||||||
|
{
|
||||||
ostr.put('u');
|
ostr.put('u');
|
||||||
ostr.write((const char*)(&(data.asUUID().mData)), UUID_BYTES);
|
LLUUID value = data.asUUID();
|
||||||
|
ostr.write((const char*)(&value.mData), UUID_BYTES);
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case LLSD::TypeString:
|
case LLSD::TypeString:
|
||||||
ostr.put('s');
|
ostr.put('s');
|
||||||
|
|||||||
Reference in New Issue
Block a user