diff options
Diffstat (limited to 'core/hrtf.cpp')
-rw-r--r-- | core/hrtf.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/hrtf.cpp b/core/hrtf.cpp index 1903898e..38c68cfa 100644 --- a/core/hrtf.cpp +++ b/core/hrtf.cpp @@ -42,7 +42,11 @@ namespace { struct HrtfEntry { std::string mDispName; std::string mFilename; + + /* GCC warns when it tries to inline this. */ + ~HrtfEntry(); }; +HrtfEntry::~HrtfEntry() = default; struct LoadedHrtf { std::string mFilename; |