Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-02-20 13:25:25 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-02-21 20:31:56 +0300
commit3e777653620a9261c35319fae64b3aa0eb83cdd4 (patch)
tree3c71d06b328d78afd429e9ab0529b29efcab7261 /extern/audaspace/include/devices/IDeviceFactory.h
parent1fb62d1272db477277534c5d31ce220afd100637 (diff)
Audaspace: Various fixes
- Fixed uninitialized result used in DynamicMusic::seek(). The comment to this function says false is returned if the handle is invalid, while in practice non-initialized value will be returned. - Spelling typos in comment. - Silence -Wdelete-non-abstract-non-virtual-dtor warning. Differential Revision: https://developer.blender.org/D6896
Diffstat (limited to 'extern/audaspace/include/devices/IDeviceFactory.h')
-rw-r--r--extern/audaspace/include/devices/IDeviceFactory.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/extern/audaspace/include/devices/IDeviceFactory.h b/extern/audaspace/include/devices/IDeviceFactory.h
index 6a0f4537b13..7023cc058c5 100644
--- a/extern/audaspace/include/devices/IDeviceFactory.h
+++ b/extern/audaspace/include/devices/IDeviceFactory.h
@@ -35,6 +35,8 @@ AUD_NAMESPACE_BEGIN
class AUD_API IDeviceFactory
{
public:
+ virtual ~IDeviceFactory() {}
+
/**
* Opens an audio device for playback.
* \exception Exception Thrown if the audio device cannot be opened.