From 53534a58ab61938569b3ffde69b67a69325f2e70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Tup=C3=BD?= Date: Wed, 31 Jan 2024 21:37:31 +0100 Subject: [PATCH] Fixed compilation errors. --- source/utility/filesystem/file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utility/filesystem/file.h b/source/utility/filesystem/file.h index b9a6d876..fc1afa9f 100644 --- a/source/utility/filesystem/file.h +++ b/source/utility/filesystem/file.h @@ -69,7 +69,7 @@ namespace utility { return std::filesystem::remove(path.get_path()); } - void create(const filepath& path) { + inline void create(const filepath& path) { // TODO: add error checking std::ofstream file(path.get_path()); file.close();