diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-02-16 15:58:54 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-02-16 15:58:54 +0100 |
| commit | 395bb98e6fd70d8f70edad21ff381c16a9e45c1f (patch) | |
| tree | ffbcbb17ba4aec62d6dc4c619b84ec280c65eb8b | |
| parent | b4d803b73839aa1281d3b81782291b4de15da241 (diff) | |
| download | libs-lbm-395bb98e6fd70d8f70edad21ff381c16a9e45c1f.tar.gz | |
Fixed missing reference
| -rw-r--r-- | lib/core/c++/hlbm.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/c++/hlbm.hpp b/lib/core/c++/hlbm.hpp index ea57ef4..4afe274 100644 --- a/lib/core/c++/hlbm.hpp +++ b/lib/core/c++/hlbm.hpp @@ -38,7 +38,7 @@ public: auto& vel_f = macros.template get<"velocity">(); saw::data<sch::Scalar<T>>& rho = rho_f.at(index); - saw::data<sch::Vector<T,Descriptor::D>> vel = vel_f.at(index); + saw::data<sch::Vector<T,Descriptor::D>>& vel = vel_f.at(index); compute_rho_u<T,Descriptor>(dfs_old_f.at(index), rho, vel); |
