diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 18:49:56 -0600 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 18:49:56 -0600 |
commit | d5a174a6d4f8be5e7cffe7c2adbb8db23b578f56 (patch) | |
tree | 536a10802f418e3e71f3828597439537d9e62f21 /include/fud_span.hpp | |
parent | 908fdf06b41f9084d719a4b517c868b1ad29a9ac (diff) |
Fixing errors in Vector.
Diffstat (limited to 'include/fud_span.hpp')
-rw-r--r-- | include/fud_span.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fud_span.hpp b/include/fud_span.hpp index ed4bcc7..b274d6f 100644 --- a/include/fud_span.hpp +++ b/include/fud_span.hpp @@ -35,6 +35,7 @@ struct Span { using ValueType = T; T* m_data; + // NOLINTNEXTLINE(cppcoreguidelines-avoid-const-or-ref-data-members) const size_t m_size; static Span make(Array<T, Size>& array) |