Skip to content

Commit 26ea466

Browse files
authored
Merge pull request #396 from RobLoach/raylib-assert-update
Update raylib-assert
2 parents 01f0c30 + e704860 commit 26ea466

3 files changed

Lines changed: 759 additions & 28 deletions

File tree

include/Wave.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ class Wave : public WaveUnmanaged {
1616
public:
1717
using WaveUnmanaged::WaveUnmanaged;
1818

19-
Wave(const Wave& other) { set(other.Copy()); }
19+
Wave(const Wave& other) : WaveUnmanaged(other.Copy()) {}
2020

21-
Wave(Wave&& other) noexcept {
22-
set(other);
21+
Wave(Wave&& other) noexcept : WaveUnmanaged(other) {
2322
other.frameCount = 0;
2423
other.sampleRate = 0;
2524
other.sampleSize = 0;

0 commit comments

Comments
 (0)