diff --git a/README.md b/README.md index 853ac1508..373d42350 100644 --- a/README.md +++ b/README.md @@ -222,6 +222,7 @@ To learn more about development with MAGE and Docker, visit the - python3-dev - clang - unixodbc + - uuid-dev Since Memgraph needs to load MAGE's modules, there is the `setup` script to help you. With it, you can build the modules so that Memgraph diff --git a/cpp/refactor_module/algorithm/refactor.cpp b/cpp/refactor_module/algorithm/refactor.cpp index 858e3b51c..0fc4f01c2 100644 --- a/cpp/refactor_module/algorithm/refactor.cpp +++ b/cpp/refactor_module/algorithm/refactor.cpp @@ -17,7 +17,7 @@ void ThrowInvalidTypeException(const mgp::Value &value) { namespace { void CopyRelProperties(mgp::Relationship &to, mgp::Relationship const &from) { - for (auto &[k, v] : from.Properties()) { + for (auto const &[k, v] : from.Properties()) { to.SetProperty(k, v); } }