aboutsummaryrefslogtreecommitdiff
path: root/src/fluid_buffer.h
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-10-10 22:46:12 +0200
committerAdrian Kummerlaender2018-10-10 22:46:12 +0200
commite720bbf4ead889a607a11513c4a64cc3ccb3e691 (patch)
tree3937d2b92e3b06c00dcd183cd71fdba65a9017e5 /src/fluid_buffer.h
parentb4a61621fc1d2d6350c8f700ee3196950e476000 (diff)
downloadboltzbub-e720bbf4ead889a607a11513c4a64cc3ccb3e691.tar
boltzbub-e720bbf4ead889a607a11513c4a64cc3ccb3e691.tar.gz
boltzbub-e720bbf4ead889a607a11513c4a64cc3ccb3e691.tar.bz2
boltzbub-e720bbf4ead889a607a11513c4a64cc3ccb3e691.tar.lz
boltzbub-e720bbf4ead889a607a11513c4a64cc3ccb3e691.tar.xz
boltzbub-e720bbf4ead889a607a11513c4a64cc3ccb3e691.tar.zst
boltzbub-e720bbf4ead889a607a11513c4a64cc3ccb3e691.zip
Improve build instructions
Diffstat (limited to 'src/fluid_buffer.h')
-rw-r--r--src/fluid_buffer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fluid_buffer.h b/src/fluid_buffer.h
index 72518bb..b0e0936 100644
--- a/src/fluid_buffer.h
+++ b/src/fluid_buffer.h
@@ -2,6 +2,7 @@
#include <memory>
#include <string>
+#include <filesystem>
#include "vector.h"
@@ -28,5 +29,5 @@ public:
Velocity& velocity(std::size_t x, std::size_t y);
Velocity& velocity(Vector<std::size_t> pos);
- void writeAsVTK(const std::string& path);
+ void writeAsVTK(const std::filesystem::path& path);
};