From 4c335ec8506cfd8ee8340313685d9a6be7acc940 Mon Sep 17 00:00:00 2001 From: servostar Date: Thu, 14 Sep 2023 10:17:31 +0200 Subject: [PATCH] added function returntype to uuid generation --- src/parser/data.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/parser/data.rs b/src/parser/data.rs index f9b28d9..ae4fa67 100644 --- a/src/parser/data.rs +++ b/src/parser/data.rs @@ -214,6 +214,8 @@ impl<'a> Declr<'a> { } } + self.result_typ.hash(&mut hasher); + self.uuid = hasher.finish() }