refactor(kernel): improve future implementation

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-03-29 23:39:44 +00:00
parent 8d71ed0ad5
commit ffd992cd74
5 changed files with 64 additions and 34 deletions

View File

@ -15,9 +15,13 @@
along with Fennix Kernel. If not, see <https://www.gnu.org/licenses/>.
*/
// #include <future>
#include <future>
namespace std
{
const error_category &future_category() noexcept
{
static const error_category cat;
return cat;
}
}