summaryrefslogtreecommitdiff
path: root/lib/core/c++
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-06-23 14:13:48 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-06-23 14:13:48 +0200
commit90f242af3036e0863a067c3f55457566d1f1e4ce (patch)
tree01d9943bb7dfef356893462a09565f31b54c2c29 /lib/core/c++
parentff702d3c9427794c5557360c53b93f9861f97554 (diff)
downloadlibs-lbm-dev.tar.gz
Fixing hlbm and particle aabbdev
Diffstat (limited to 'lib/core/c++')
-rw-r--r--lib/core/c++/hlbm.hpp2
-rw-r--r--lib/core/c++/particle/aabb.hpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/core/c++/hlbm.hpp b/lib/core/c++/hlbm.hpp
index 0ba9cc2..c15bfc4 100644
--- a/lib/core/c++/hlbm.hpp
+++ b/lib/core/c++/hlbm.hpp
@@ -6,6 +6,8 @@
#include "particle/particle.hpp"
+#include <iostream>
+
namespace kel {
namespace lbm {
namespace cmpt {
diff --git a/lib/core/c++/particle/aabb.hpp b/lib/core/c++/particle/aabb.hpp
index d74ea88..1773dea 100644
--- a/lib/core/c++/particle/aabb.hpp
+++ b/lib/core/c++/particle/aabb.hpp
@@ -7,7 +7,7 @@ namespace kel {
namespace lbm {
template<typename PGroup>
class particle_aabb final {
- static_assert(saw::always_false<PGroup>::value, "Not supported");
+ static_assert(saw::always_false<PGroup>, "Not supported");
};
template<typename T, uint64_t D>