From 3827ae4e821ff3758d1eaf2dbacc55a22f802731 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 17 Nov 2025 10:31:30 +0100 Subject: feat: fixing merge conflicts. Signed-off-by: Amlal El Mahrouss --- dev/lib/core/allocator_system.hpp | 10 +++++----- dev/lib/core/error_handler.hpp | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) (limited to 'dev/lib/core') diff --git a/dev/lib/core/allocator_system.hpp b/dev/lib/core/allocator_system.hpp index 3ffa02a..6fd0119 100644 --- a/dev/lib/core/allocator_system.hpp +++ b/dev/lib/core/allocator_system.hpp @@ -5,13 +5,13 @@ * Copyright 2025, Amlal El Mahrouss. Licensed under the BSL 1.0 license */ -#ifndef _SCL_ALLOCATOR_SYSTEM_HPP -#define _SCL_ALLOCATOR_SYSTEM_HPP +#ifndef _OCL_ALLOCATOR_SYSTEM_HPP +#define _OCL_ALLOCATOR_SYSTEM_HPP #include #include -namespace scl +namespace ocl { template struct new_op final @@ -69,6 +69,6 @@ namespace scl template using standard_allocator_type = allocator_system, delete_op>; -} // namespace scl +} // namespace ocl -#endif // ifndef _SCL_ALLOCATOR_SYSTEM_HPP +#endif // ifndef _OCL_ALLOCATOR_SYSTEM_HPP diff --git a/dev/lib/core/error_handler.hpp b/dev/lib/core/error_handler.hpp index 449e255..67bf7b4 100644 --- a/dev/lib/core/error_handler.hpp +++ b/dev/lib/core/error_handler.hpp @@ -5,13 +5,13 @@ * Copyright 2025, Amlal El Mahrouss. */ -#ifndef _SCL_ERROR_HANDLER_HPP -#define _SCL_ERROR_HANDLER_HPP +#ifndef _OCL_ERROR_HANDLER_HPP +#define _OCL_ERROR_HANDLER_HPP #include #include -namespace scl +namespace ocl { struct basic_error_handler; @@ -25,12 +25,12 @@ namespace scl virtual void operator()(const std::basic_string& msg) { - scl::io::print(msg); + ocl::io::print(msg); } }; using standard_error_handler = basic_error_handler; using error_handler_type = basic_error_handler; -} // namespace scl +} // namespace ocl -#endif // ifndef _SCL_ERROR_HANDLER_HPP +#endif // ifndef _OCL_ERROR_HANDLER_HPP -- cgit v1.2.3