From 9ec55ac099937b5b5009194a42e297599d0ab635 Mon Sep 17 00:00:00 2001
From: Josip Mrden <josip.mrden@memgraph.io>
Date: Thu, 21 Mar 2024 13:16:55 +0100
Subject: [PATCH] Fix

---
 include/mgp.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/mgp.hpp b/include/mgp.hpp
index 6cb2a058a..ba5002c3f 100644
--- a/include/mgp.hpp
+++ b/include/mgp.hpp
@@ -4448,7 +4448,7 @@ inline Value ExecutionRow::At(std::string_view key) const { return row_.At(key);
 
 inline bool ExecutionRow::KeyExists(std::string_view key) const { return row_.KeyExists(key); }
 
-inline mgp::Map ExecutionRow::Values() const {return mgp::Map(row_)};
+inline mgp::Map ExecutionRow::Values() const { return mgp::Map(row_); }
 
 // do not enter
 namespace detail {