summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/utils/AsmUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/CompilerKit/utils/AsmUtils.h')
-rw-r--r--dev/CompilerKit/utils/AsmUtils.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/CompilerKit/utils/AsmUtils.h b/dev/CompilerKit/utils/AsmUtils.h
index b5ae513..897fcbe 100644
--- a/dev/CompilerKit/utils/AsmUtils.h
+++ b/dev/CompilerKit/utils/AsmUtils.h
@@ -1,8 +1,8 @@
-/* -------------------------------------------
+/* ========================================
- Copyright (C) 2024-2025 Amlal EL Mahrouss, Licensed under Apache 2.0
+ Copyright (C) 2024-2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license
-------------------------------------------- */
+======================================== */
#pragma once
@@ -16,7 +16,7 @@ using namespace CompilerKit;
/// @param lineBuffer the lineBuffer to fetch from.
/// @param numberKey where to seek that number.
/// @return
-static NumberCast32 GetNumber32(std::string lineBuffer, std::string numberKey) {
+static NumberCast32 GetNumber32(STLString lineBuffer, STLString numberKey) {
auto pos = lineBuffer.find(numberKey) + numberKey.size();
while (lineBuffer[pos] == ' ') {