summaryrefslogtreecommitdiff
path: root/src/PCMDataProviders.cpp
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-11 11:01:20 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-14 23:01:38 +0000
commit10f26f1377b843f091467a936ccbe8aebc92f9c0 (patch)
tree3121fba841900207653519079a8f34cfece220a7 /src/PCMDataProviders.cpp
parent82b04f26012d2df2480de833b5ecc4eaef29d428 (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 2ba7836..d883718 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()