diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-09-08 17:15:27 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-09-08 17:15:27 +0200 |
commit | 1f993006305952f4cafddd08267731877e808bba (patch) | |
tree | bb416a6012c058356404d1a547fec09c3d45d25d /c++/boundary.hpp | |
parent | 616b0011c3638eceaae8890c3a66037625587f1d (diff) |
Dangling changes
Fixed ForcedGuo collision
Diffstat (limited to 'c++/boundary.hpp')
-rw-r--r-- | c++/boundary.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/boundary.hpp b/c++/boundary.hpp index 3cf6f3f..bc4859c 100644 --- a/c++/boundary.hpp +++ b/c++/boundary.hpp @@ -51,7 +51,7 @@ public: auto& cell = field(index); auto& dfs_old = (is_even) ? cell.template get<"dfs_old">() : cell.template get<"dfs">(); - auto& dfs = (not is_even) ? cell.template get<"dfs_old">() : cell.template get<"dfs">(); + // auto& dfs = (not is_even) ? cell.template get<"dfs_old">() : cell.template get<"dfs">(); using dfi = df_info<T,Descriptor>; |