diff options
| author | Amlal <amlalelmahrouss@icloud.com> | 2026-04-02 12:22:49 +0200 |
|---|---|---|
| committer | Amlal <amlalelmahrouss@icloud.com> | 2026-04-02 12:22:49 +0200 |
| commit | 81cfadb91ecb0570d62610317020bfde41f995e8 (patch) | |
| tree | 9658515c8972f0665cee7e64e029feca230b0915 /include/CoreRuntime/cplusplus | |
| parent | b95628ad1a1bcccfd283db23e2db915e87665068 (diff) | |
[FEAT] Add targets for Windows NT, patch PEF.h header with current NeSystem
version.
[CHORE] CRK patches and exports ABI breaking changes.
Signed-off-by: Amlal <amlalelmahrouss@icloud.com>
Diffstat (limited to 'include/CoreRuntime/cplusplus')
| -rw-r--r-- | include/CoreRuntime/cplusplus/utility.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/CoreRuntime/cplusplus/utility.hpp b/include/CoreRuntime/cplusplus/utility.hpp index a427c44..81da627 100644 --- a/include/CoreRuntime/cplusplus/utility.hpp +++ b/include/CoreRuntime/cplusplus/utility.hpp @@ -3,10 +3,11 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nectar -#ifndef LIBCXX_UTILITY_H -#define LIBCXX_UTILITY_H +#ifndef CRK_UTILITY_HPP +#define CRK_UTILITY_HPP namespace std { + /// @brief Forward object. /// @tparam Args the object type. /// @param arg the object. @@ -24,6 +25,7 @@ template <typename Args> inline auto move(Args&& arg) -> Args&& { return static_cast<Args&&>(arg); } + } // namespace std -#endif // LIBCXX_UTILITY_H +#endif // CRK_UTILITY_HPP |
