fix xcode 13.4.1 compilation

This commit is contained in:
BlackMATov
2024-02-11 08:17:44 +07:00
parent 93c8fc9ea9
commit f228e92545
2 changed files with 6 additions and 0 deletions

View File

@@ -32,6 +32,9 @@ namespace meta_hpp::detail
// clang-format off
[[nodiscard]] T* data() noexcept { return begin_; }
[[nodiscard]] const T* data() const noexcept { return begin_; }
[[nodiscard]] T* begin() noexcept { return begin_; }
[[nodiscard]] const T* begin() const noexcept { return begin_; }
[[nodiscard]] const T* cbegin() const noexcept { return begin_; }