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

Fix function declaration for uuid::toString()

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
This commit is contained in:
Steffen Vogel 2023-06-30 13:25:32 +02:00 committed by Steffen Vogel
parent 97b914018e
commit cac2660f78

View file

@ -19,7 +19,7 @@ namespace villas {
namespace uuid {
// Convert a UUID to C++ string
std::string toString(uuid_t in);
std::string toString(const uuid_t in);
// Generate an UUID by MD5 hashing the provided string
int generateFromString(uuid_t out, const std::string &data, const std::string &ns = "");