1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

comment out unused function

This commit is contained in:
Steffen Vogel 2019-06-03 17:36:56 +02:00
parent f3937213d7
commit 85c4c36244

View file

@ -35,10 +35,10 @@ static std::vector<byte> vec(const char *str)
return std::vector<byte>((byte *) str, (byte *) str + strlen(str));
}
static std::string str(const std::vector<byte> &vec)
{
return std::string((char *) vec.data(), vec.size());
}
// static std::string str(const std::vector<byte> &vec)
// {
// return std::string((char *) vec.data(), vec.size());
// }
Test(base64, encoding)
{