build: remove space in UDL definition
Fixes an error under clang
This commit is contained in:
parent
b3e14f949e
commit
aa8f4590c6
@ -10,7 +10,7 @@ using cruft::crypto::hash::MD5;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
std::vector<uint8_t>
|
||||
operator"" _u8s (const char *str, size_t len)
|
||||
operator""_u8s (const char *str, size_t len)
|
||||
{
|
||||
std::vector<uint8_t> res;
|
||||
res.resize (len);
|
||||
|
@ -10,7 +10,7 @@ using cruft::crypto::hash::RIPEMD;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
std::vector<uint8_t>
|
||||
operator"" _u8s (const char *str, size_t len)
|
||||
operator""_u8s (const char *str, size_t len)
|
||||
{
|
||||
std::vector<uint8_t> res;
|
||||
res.resize (len);
|
||||
|
@ -14,7 +14,7 @@ using cruft::crypto::hash::SHA1;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
std::vector<uint8_t>
|
||||
operator"" _u8s (const char *str, size_t len)
|
||||
operator""_u8s (const char *str, size_t len)
|
||||
{
|
||||
std::vector<uint8_t> res;
|
||||
res.resize (len);
|
||||
|
Loading…
Reference in New Issue
Block a user