From 8f71c70d1492938df43531b2574cd1946ce390cc Mon Sep 17 00:00:00 2001 From: Krutonium <3945538+Krutonium@users.noreply.github.com> Date: Sun, 10 May 2026 01:41:15 -0400 Subject: [PATCH] fix io.hpp to enable compiling on GCC15 (#790) --- include/dusk/io.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/dusk/io.hpp b/include/dusk/io.hpp index 57fda3feac..6de60e3449 100644 --- a/include/dusk/io.hpp +++ b/include/dusk/io.hpp @@ -2,14 +2,12 @@ #define DUSK_IO_HPP #include +#include // I can't believe it's 2026 and neither SDL (no error codes) nor // C++ (no error codes) have a file system API functional enough for me to use. // Here you go, this one's inspired by C#. I only wrote the functions I need. -namespace std::filesystem { - class path; -} namespace dusk::io {