diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2025-04-03 06:08:41 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2025-04-03 06:08:41 -0500 |
commit | 4a28858da8ee1919134df0142b69781ac9ca4647 (patch) | |
tree | 74d16fd753722cb9979a1b8bbb76ea06215ab478 /include/fud_vector.hpp | |
parent | 090af1b8097fecf6b09f3048811a44e11ece3242 (diff) |
Remove unused type definition resulting in build error.
Diffstat (limited to 'include/fud_vector.hpp')
-rw-r--r-- | include/fud_vector.hpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/fud_vector.hpp b/include/fud_vector.hpp index b2827b4..9dc3d5f 100644 --- a/include/fud_vector.hpp +++ b/include/fud_vector.hpp @@ -316,7 +316,6 @@ class Vector { Result<Span<T>, FudStatus> span() { - using RetType = Result<Span<T>, FudStatus>; if (m_data == nullptr) { return Error{FudStatus::ObjectInvalid}; } |