Skip to content

Commit

Permalink
const and readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
imilinovic committed Jan 15, 2025
1 parent cc3986f commit 7d71f4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cpp/refactor_module/algorithm/refactor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 7d71f4b

Please sign in to comment.