summaryrefslogtreecommitdiff
path: root/src/PCMDataProviders.cpp
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-11-23 22:59:28 +0100
committerCarl Hetherington <cth@carlh.net>2020-11-23 22:59:28 +0100
commita4f864cef4487da986227c8223b685bd6cb7237f (patch)
tree3285ca9d8f628f67b6c54f045499aaaf7c985ce8 /src/PCMDataProviders.cpp
parente342720007f9a695b72dc7a60959320418fb1c1a (diff)
Fix constructor initializer order.
Diffstat (limited to 'src/PCMDataProviders.cpp')
-rw-r--r--src/PCMDataProviders.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PCMDataProviders.cpp b/src/PCMDataProviders.cpp
index 7d2c152..8eb9681 100644
--- a/src/PCMDataProviders.cpp
+++ b/src/PCMDataProviders.cpp
@@ -40,7 +40,7 @@ ASDCP::PCMDataProviderInterface::~PCMDataProviderInterface() {}
//
ASDCP::WAVDataProvider::WAVDataProvider()
- : m_Parser(), m_FB(), m_ADesc(), m_SampleSize(0), m_ptr(NULL)
+ : m_Parser(), m_FB(), m_ADesc(), m_ptr(NULL), m_SampleSize(0)
{}
ASDCP::WAVDataProvider::~WAVDataProvider()