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();