mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-01 18:39:16 +00:00
kernel: add arm architecture support
Some checks failed
Build OS / Deploy Documentation to GitHub Pages (push) Failing after 5m35s
Build OS / Analyze (${{ matrix.language }}) (manual, c-cpp) (push) Has been cancelled
Build OS / Build Cross-Compiler & Toolchain (push) Has been cancelled
Build OS / Build amd64 (push) Has been cancelled
Build OS / Build i386 (push) Has been cancelled
Build OS / Build aarch64 (push) Has been cancelled
Build OS / Build arm (push) Has been cancelled
Some checks failed
Build OS / Deploy Documentation to GitHub Pages (push) Failing after 5m35s
Build OS / Analyze (${{ matrix.language }}) (manual, c-cpp) (push) Has been cancelled
Build OS / Build Cross-Compiler & Toolchain (push) Has been cancelled
Build OS / Build amd64 (push) Has been cancelled
Build OS / Build i386 (push) Has been cancelled
Build OS / Build aarch64 (push) Has been cancelled
Build OS / Build arm (push) Has been cancelled
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
@ -79,13 +79,13 @@ namespace std
|
||||
|
||||
[[nodiscard]] void *operator new(std::size_t count);
|
||||
[[nodiscard]] void *operator new[](std::size_t count);
|
||||
// [[nodiscard]] void *operator new(std::size_t count, std::align_val_t al);
|
||||
// [[nodiscard]] void *operator new[](std::size_t count, std::align_val_t al);
|
||||
[[nodiscard]] void *operator new(std::size_t count, std::align_val_t al);
|
||||
[[nodiscard]] void *operator new[](std::size_t count, std::align_val_t al);
|
||||
|
||||
// [[nodiscard]] void *operator new(std::size_t count, const std::nothrow_t &tag) noexcept;
|
||||
// [[nodiscard]] void *operator new[](std::size_t count, const std::nothrow_t &tag) noexcept;
|
||||
// [[nodiscard]] void *operator new(std::size_t count, std::align_val_t al, const std::nothrow_t &) noexcept;
|
||||
// [[nodiscard]] void *operator new[](std::size_t count, std::align_val_t al, const std::nothrow_t &) noexcept;
|
||||
[[nodiscard]] void *operator new(std::size_t count, const std::nothrow_t &tag) noexcept;
|
||||
[[nodiscard]] void *operator new[](std::size_t count, const std::nothrow_t &tag) noexcept;
|
||||
[[nodiscard]] void *operator new(std::size_t count, std::align_val_t al, const std::nothrow_t &) noexcept;
|
||||
[[nodiscard]] void *operator new[](std::size_t count, std::align_val_t al, const std::nothrow_t &) noexcept;
|
||||
|
||||
[[nodiscard]] void *operator new(std::size_t count, void *ptr) noexcept;
|
||||
[[nodiscard]] void *operator new[](std::size_t count, void *ptr) noexcept;
|
||||
|
Reference in New Issue
Block a user