diff options
Diffstat (limited to 'core/hrtf.cpp')
-rw-r--r-- | core/hrtf.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/hrtf.cpp b/core/hrtf.cpp index 9d0f83ba..310b7a80 100644 --- a/core/hrtf.cpp +++ b/core/hrtf.cpp @@ -56,7 +56,14 @@ struct LoadedHrtf { LoadedHrtf(T&& name, U&& entry) : mFilename{std::forward<T>(name)}, mEntry{std::forward<U>(entry)} { } + LoadedHrtf(LoadedHrtf&&) = default; + /* GCC warns when it tries to inline this. */ + ~LoadedHrtf(); + + LoadedHrtf& operator=(LoadedHrtf&&) = default; }; +LoadedHrtf::~LoadedHrtf() = default; + /* Data set limits must be the same as or more flexible than those defined in * the makemhr utility. |