diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 16:27:56 -0600 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 16:27:56 -0600 |
commit | 8f12614f2da8221438a3807b1d234517650fbdb6 (patch) | |
tree | 18b4aebe99b1d64628546ca5811c10aeb139f1e7 /include/fud_vector.hpp | |
parent | 87071200872c2450c947047350132aee493033c1 (diff) |
Clang tidy fixes.
Diffstat (limited to 'include/fud_vector.hpp')
-rw-r--r-- | include/fud_vector.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fud_vector.hpp b/include/fud_vector.hpp index 1730c50..2942e71 100644 --- a/include/fud_vector.hpp +++ b/include/fud_vector.hpp @@ -205,7 +205,7 @@ class Vector { return FudStatus::NullPointer; } } else { - allocator = rhs.allocator; + allocator = rhs.m_allocator; if (allocator == nullptr) { return FudStatus::ArgumentInvalid; } |