diff --git a/app/src/main/cpp/skyline/vfs/backing.h b/app/src/main/cpp/skyline/vfs/backing.h index 123f2c44..490bd05f 100644 --- a/app/src/main/cpp/skyline/vfs/backing.h +++ b/app/src/main/cpp/skyline/vfs/backing.h @@ -3,6 +3,7 @@ #pragma once +#include #include namespace skyline::vfs { @@ -82,7 +83,7 @@ namespace skyline::vfs { /** * @brief Implicit casting for reading into spans of different types */ - template, bool>::type = true> + template requires (!std::same_as) size_t Read(span output, size_t offset = 0) { return Read(output.template cast(), offset); }