From cac2660f78fd36065e53da63acee265f4ccd95a6 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Fri, 30 Jun 2023 13:25:32 +0200 Subject: [PATCH] Fix function declaration for uuid::toString() Signed-off-by: Steffen Vogel --- common/include/villas/uuid.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/include/villas/uuid.hpp b/common/include/villas/uuid.hpp index fe8b08b66..25ccbc225 100644 --- a/common/include/villas/uuid.hpp +++ b/common/include/villas/uuid.hpp @@ -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 = "");