summaryrefslogtreecommitdiffhomepage
path: root/Kernel/CFKit
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-07 14:59:20 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-07 14:59:20 +0200
commiteda81576c1241727085c2f62135cdf5dc118a1d0 (patch)
tree419e32ac03b5dfbd5e5f91ca04b44852504808c6 /Kernel/CFKit
parentf7ca4eff84fa67283f0e0ac1e107e4bd6f569ca0 (diff)
MHR-36: use Char type instead of builtin char.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/CFKit')
-rw-r--r--Kernel/CFKit/URL.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/CFKit/URL.hpp b/Kernel/CFKit/URL.hpp
index 049e1194..69ab5b4b 100644
--- a/Kernel/CFKit/URL.hpp
+++ b/Kernel/CFKit/URL.hpp
@@ -26,8 +26,8 @@ namespace Kernel
Ref<StringView> fUrlView;
};
- ErrorOr<StringView> url_extract_location(const char* url);
- ErrorOr<StringView> url_extract_protocol(const char* url);
+ ErrorOr<StringView> url_extract_location(const Char* url);
+ ErrorOr<StringView> url_extract_protocol(const Char* url);
} // namespace Kernel
#endif /* ifndef _INC_URL_HPP_ */