Browse Source

Span: Add missing move constructors

v7.0.9
reuk 2 years ago
parent
commit
387ab88c13
No known key found for this signature in database GPG Key ID: FCB43929F012EE5C
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      modules/juce_core/containers/juce_Span.h

+ 4
- 0
modules/juce_core/containers/juce_Span.h View File

@@ -114,6 +114,10 @@ public:
constexpr Span& operator= (const Span&) = default;
constexpr Span (Span&&) noexcept = default;
constexpr Span& operator= (Span&&) noexcept = default;
using Base::size;
constexpr Value* begin() const { return ptr; }


Loading…
Cancel
Save