summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/src/Frontend/CPlusPlusCompilerAMD64.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-05 09:57:44 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-05 09:57:44 +0100
commit5f8ee9584a7a5c911d46f73e24ec7a1201058c50 (patch)
treed31ac096094430ca93e521ef233144d969ad6427 /dev/CompilerKit/src/Frontend/CPlusPlusCompilerAMD64.cc
parentb0c5f2a2683657182f5ce3dc3bcbf252164b0077 (diff)
feat! compiler_kit: API breaking changes.
feat: debugger_kit: Debugger work in progress implementation. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/src/Frontend/CPlusPlusCompilerAMD64.cc')
-rw-r--r--dev/CompilerKit/src/Frontend/CPlusPlusCompilerAMD64.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/CompilerKit/src/Frontend/CPlusPlusCompilerAMD64.cc b/dev/CompilerKit/src/Frontend/CPlusPlusCompilerAMD64.cc
index 5a0fc02..98a8018 100644
--- a/dev/CompilerKit/src/Frontend/CPlusPlusCompilerAMD64.cc
+++ b/dev/CompilerKit/src/Frontend/CPlusPlusCompilerAMD64.cc
@@ -117,7 +117,7 @@ static Boolean kInBraces = false;
static size_t kBracesCount = 0UL;
/* @brief C++ compiler backend for the NeKernel C++ driver */
-class CompilerFrontendCPlusPlusAMD64 final LC_COMPILER_FRONTEND {
+class CompilerFrontendCPlusPlusAMD64 final CK_COMPILER_FRONTEND {
public:
explicit CompilerFrontendCPlusPlusAMD64() = default;
~CompilerFrontendCPlusPlusAMD64() override = default;
@@ -718,7 +718,7 @@ CompilerKit::SyntaxLeafList::SyntaxLeaf CompilerFrontendCPlusPlusAMD64::Compile(
/////////////////////////////////////////////////////////////////////////////////////////
-class AssemblyCPlusPlusInterfaceAMD64 final LC_ASSEMBLY_INTERFACE {
+class AssemblyCPlusPlusInterfaceAMD64 final CK_ASSEMBLY_INTERFACE {
public:
explicit AssemblyCPlusPlusInterfaceAMD64() = default;
~AssemblyCPlusPlusInterfaceAMD64() override = default;