diff options
Diffstat (limited to 'compat/strerror.cpp')
-rw-r--r-- | compat/strerror.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/strerror.cpp b/compat/strerror.cpp index 8b237153..f952cd3c 100644 --- a/compat/strerror.cpp +++ b/compat/strerror.cpp @@ -1,6 +1,7 @@ #include "strerror.hpp" #include <cerrno> #include <string.h> +#include <Corrade/Containers/StringView.h> namespace floormat { @@ -19,7 +20,6 @@ StringView get_error_string(ArrayView<char> buf, int error) if (status == 0) return { buf.data() }; #endif - return "Unknown error"_s; }; |