summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/core
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-30 08:27:20 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-30 08:28:15 +0200
commit2cbec2472571a625f9d574c15589c57c535bed1a (patch)
treed24120fd85d875efd2ede33f6a0f00865c08beeb /dev/lib/core
parentea7557ebda2dc90804223bf9b41eece46b8b4b52 (diff)
feat! utlity: new `chunk_string` algorithm which is faster than the
previous one. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/core')
-rw-r--r--dev/lib/core/error_handler.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/lib/core/error_handler.hpp b/dev/lib/core/error_handler.hpp
index 01d36b1..6bf3516 100644
--- a/dev/lib/core/error_handler.hpp
+++ b/dev/lib/core/error_handler.hpp
@@ -25,7 +25,7 @@ namespace ocl
virtual void operator()(const std::basic_string<char>& msg)
{
- ((void)msg);
+ ((void)msg);
}
};