mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Full support for 128-bit types. Remove throw() specifications.
This commit is contained in:
@@ -61,6 +61,16 @@ std::string STUInt64::getText() const
|
||||
return boost::lexical_cast<std::string>(value);
|
||||
}
|
||||
|
||||
STHash128* STHash128::construct(SerializerIterator& u, const char *name)
|
||||
{
|
||||
return new STHash128(name, u.get128());
|
||||
}
|
||||
|
||||
std::string STHash128::getText() const
|
||||
{
|
||||
return value.GetHex();
|
||||
}
|
||||
|
||||
STHash160* STHash160::construct(SerializerIterator& u, const char *name)
|
||||
{
|
||||
return new STHash160(name, u.get160());
|
||||
|
||||
Reference in New Issue
Block a user