mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 10:37:37 -07:00
epee: fix peer ids being truncated on display
This commit is contained in:
parent
a48ef0a65a
commit
feef1c6aac
@ -188,8 +188,10 @@ POP_WARNINGS
|
|||||||
return boost::lexical_cast<std::string>(val);
|
return boost::lexical_cast<std::string>(val);
|
||||||
}
|
}
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
inline std::string to_string_hex(uint32_t val)
|
template<typename T>
|
||||||
|
inline std::string to_string_hex(const T &val)
|
||||||
{
|
{
|
||||||
|
static_assert(std::is_arithmetic<T>::value, "only arithmetic types");
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
ss << std::hex << val;
|
ss << std::hex << val;
|
||||||
std::string s;
|
std::string s;
|
||||||
|
Loading…
Reference in New Issue
Block a user