From 65e45e509f43063e1efa3e52ee7c53edfdae0a83 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 8 Jul 2025 18:34:43 +0200 Subject: fix: LibC++: fix `base_exception.h` Signed-off-by: Amlal El Mahrouss --- dev/LibC++/base_exception.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev') diff --git a/dev/LibC++/base_exception.h b/dev/LibC++/base_exception.h index 314ac12..17b41e3 100644 --- a/dev/LibC++/base_exception.h +++ b/dev/LibC++/base_exception.h @@ -7,11 +7,11 @@ #pragma once #include -#include +#include namespace std::base_exception { inline void __throw_general(void) { - exit(33); + base_process::exit(33); } inline void __throw_domain_error(const char* error) { -- cgit v1.2.3