This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Span: Add missing move constructors
v7.0.9
reuk
2 years ago
parent
94ee60041f
commit
387ab88c13
No known key found for this signature in database
GPG Key ID:
FCB43929F012EE5C
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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; }
Write
Preview
Loading…
Cancel
Save