diff options
| author | Amlal <amlalelmahrouss@icloud.com> | 2024-05-11 06:43:54 +0000 |
|---|---|---|
| committer | Amlal <amlalelmahrouss@icloud.com> | 2024-05-11 06:43:54 +0000 |
| commit | ca675beb41dba8d7d16c5793b55d1672f38be3b4 (patch) | |
| tree | c995ada42729ac2059a0ed87a4539d1a7e10b14a /Private/CompilerKit | |
| parent | 2b4a4792abf51487ab4a16106f9376f43acf381a (diff) | |
| parent | bc57a29a24b98b00ba17710ba84ec2188ab73504 (diff) | |
Merged in MHR-23 (pull request #12)
MHR-23: Merge work.
Diffstat (limited to 'Private/CompilerKit')
| -rw-r--r-- | Private/CompilerKit/CompilerKit.hxx | 13 | ||||
| -rw-r--r-- | Private/CompilerKit/Detail.hxx | 31 | ||||
| -rw-r--r-- | Private/CompilerKit/Version.hxx | 4 |
3 files changed, 0 insertions, 48 deletions
diff --git a/Private/CompilerKit/CompilerKit.hxx b/Private/CompilerKit/CompilerKit.hxx deleted file mode 100644 index 7bed48f9..00000000 --- a/Private/CompilerKit/CompilerKit.hxx +++ /dev/null @@ -1,13 +0,0 @@ -/* ------------------------------------------- - - Copyright Mahrouss Logic - -------------------------------------------- */ - -#ifndef _INC_CL_HPP -#define _INC_CL_HPP - -#include <CompilerKit/Detail.hxx> -#include <CompilerKit/Version.hxx> - -#endif /* ifndef _INC_CL_HPP */ diff --git a/Private/CompilerKit/Detail.hxx b/Private/CompilerKit/Detail.hxx deleted file mode 100644 index 3a378018..00000000 --- a/Private/CompilerKit/Detail.hxx +++ /dev/null @@ -1,31 +0,0 @@ -/* ------------------------------------------- - - Copyright Mahrouss Logic - -------------------------------------------- */ - -#pragma once - -#ifdef __KERNEL__ -# include <NewKit/Defines.hpp> -#endif // ifdef __KERNEL__ - -#define NEWOS_COPY_DELETE(KLASS) \ - KLASS &operator=(const KLASS &) = delete; \ - KLASS(const KLASS &) = delete; - - -#define NEWOS_COPY_DEFAULT(KLASS) \ - KLASS &operator=(const KLASS &) = default; \ - KLASS(const KLASS &) = default; - - -#define NEWOS_MOVE_DELETE(KLASS) \ - KLASS &operator=(KLASS &&) = delete; \ - KLASS(KLASS &&) = delete; - - -#define NEWOS_MOVE_DEFAULT(KLASS) \ - KLASS &operator=(KLASS &&) = default; \ - KLASS(KLASS &&) = default; - diff --git a/Private/CompilerKit/Version.hxx b/Private/CompilerKit/Version.hxx deleted file mode 100644 index 068b2189..00000000 --- a/Private/CompilerKit/Version.hxx +++ /dev/null @@ -1,4 +0,0 @@ -#pragma once - -#define BOOTLOADER_VERSION L"v1.14.2" -#define KERNEL_VERSION "v1.14.2" |
