diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-20 19:39:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-20 19:39:28 -0500 |
| commit | c78b97d70a06f0d17e52bf4ac58d4b917789e8a6 (patch) | |
| tree | d4ab3c4e1685e7f3906bc29dd47cc130d116e190 /dev/CompilerKit/utils | |
| parent | 274936aa8c14c09239f771bce5b5cc5b6ae507a2 (diff) | |
| parent | b8e6e1492ed14e270b1061809b0569b8d2f4c0ec (diff) | |
Merge pull request #26 from nekernel-org/devv0.0.6
NeCTI: Update ReadMe and improve codebase.
Diffstat (limited to 'dev/CompilerKit/utils')
| -rw-r--r-- | dev/CompilerKit/utils/AsmUtils.h | 8 | ||||
| -rw-r--r-- | dev/CompilerKit/utils/CompilerUtils.h | 6 | ||||
| -rw-r--r-- | dev/CompilerKit/utils/DylibHelpers.h | 6 |
3 files changed, 10 insertions, 10 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] == ' ') { diff --git a/dev/CompilerKit/utils/CompilerUtils.h b/dev/CompilerKit/utils/CompilerUtils.h index d812ab8..1b086ee 100644 --- a/dev/CompilerKit/utils/CompilerUtils.h +++ b/dev/CompilerKit/utils/CompilerUtils.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 diff --git a/dev/CompilerKit/utils/DylibHelpers.h b/dev/CompilerKit/utils/DylibHelpers.h index 9871d05..ab58fc7 100644 --- a/dev/CompilerKit/utils/DylibHelpers.h +++ b/dev/CompilerKit/utils/DylibHelpers.h @@ -1,8 +1,8 @@ -/* ------------------------------------------- +/* ======================================== - Copyright (C) 2025 Amlal EL Mahrouss, Licensed under Apache 2.0 + Copyright (C) 2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license -------------------------------------------- */ +======================================== */ #pragma once |
