summaryrefslogtreecommitdiffhomepage
path: root/Sources/cplusplus.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-06-01 12:22:17 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-06-01 12:22:17 +0200
commitd0b25baeca4f807b43cff3bda2efd03fdff96728 (patch)
tree60eeb17bc9780061fa1bc9260d294ac9c4b90e92 /Sources/cplusplus.cc
parentebab1465b4d42910da1b36d8c65487c2f077b481 (diff)
publishing my work.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Sources/cplusplus.cc')
-rw-r--r--Sources/cplusplus.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/Sources/cplusplus.cc b/Sources/cplusplus.cc
index db33688..d03987c 100644
--- a/Sources/cplusplus.cc
+++ b/Sources/cplusplus.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* cplusplus
- * Copyright SoftwareLabs, all rights reserved.
+ * Copyright Amlal El Mahrouss, all rights reserved.
*
* ========================================================
*/
@@ -14,7 +14,7 @@
#define kPrintF printf
#define kSplashCxx() \
- kPrintF(kWhite "%s\n", "LightSpeed C++ Compiler, Copyright SoftwareLabs.")
+ kPrintF(kWhite "%s\n", "LightSpeed C++ Compiler, Copyright Amlal El Mahrouss.")
#include <Common/AsmKit/CPU/amd64.hpp>
#include <Common/ParserKit.hpp>
@@ -29,9 +29,9 @@
#define kOk 0
-/* SoftwareLabs C++ driver */
+/* Amlal El Mahrouss C++ driver */
/* This is part of MPCC C++ compiler. */
-/* (c) SoftwareLabs */
+/* (c) Amlal El Mahrouss */
/// @author Amlal El Mahrouss (amlel)
/// @file cc.cc
@@ -170,7 +170,7 @@ static bool kOnForLoop = false;
static bool kInBraces = false;
static size_t kBracesCount = 0UL;
-/* @brief C++ compiler backend for SoftwareLabs C++ */
+/* @brief C++ compiler backend for Amlal El Mahrouss C++ */
class CompilerBackendCPlusPlus final : public ParserKit::CompilerBackend
{
public: