summaryrefslogtreecommitdiff
path: root/c++/examples
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-03-05 15:54:21 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-03-05 15:54:21 +0100
commit1677940809c679f6505d6689a5f6018e33b840b0 (patch)
treec88ae46c52465413e0eb4016a1ca2e10e9e5c45d /c++/examples
parentf3dde8285baf87a89d2a9b79ac719573c47538ff (diff)
fixing to new stdenv
Diffstat (limited to 'c++/examples')
-rw-r--r--c++/examples/cavity_2d.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/c++/examples/cavity_2d.cpp b/c++/examples/cavity_2d.cpp
index 88e53fe..2899f88 100644
--- a/c++/examples/cavity_2d.cpp
+++ b/c++/examples/cavity_2d.cpp
@@ -32,6 +32,9 @@ using Cell = CellData<
}
+/**
+ * 2 A pull pattern
+ */
template<size_t D, size_t Q>
class collision {
public:
@@ -57,7 +60,6 @@ public:
}
return eq;
-
}
void compute_rho_u(
@@ -178,5 +180,7 @@ int main(){
std::cout<<std::endl;
+
+
return 0;
}