summaryrefslogtreecommitdiff
path: root/src/h__02_Reader.cpp
diff options
context:
space:
mode:
authorJohn Hurst <jhurst@cinecert.com>2021-05-11 14:14:01 -0700
committerGitHub <noreply@github.com>2021-05-11 14:14:01 -0700
commitb71135239b4710bcdccd88adde161acf954706cb (patch)
tree4cfa2c5123fac71f75178247c80911856e3087be /src/h__02_Reader.cpp
parent8c51d30f81cc4a123ec75be93e67cedb48982e40 (diff)
parent794d14855362ca5e3d5a99ed9bf86bd506a172c1 (diff)
Merge pull request #32 from cth103/warning-fixes
Warning fixes
Diffstat (limited to 'src/h__02_Reader.cpp')
-rw-r--r--src/h__02_Reader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/h__02_Reader.cpp b/src/h__02_Reader.cpp
index b3c092b..e807387 100644
--- a/src/h__02_Reader.cpp
+++ b/src/h__02_Reader.cpp
@@ -64,8 +64,8 @@ AS_02::default_md_object_init()
AS_02::MXF::AS02IndexReader::AS02IndexReader(const ASDCP::Dictionary*& d) :
- m_Duration(0), m_BytesPerEditUnit(0),
- ASDCP::MXF::Partition(d), m_Dict(d) {}
+ ASDCP::MXF::Partition(d),
+ m_Duration(0), m_BytesPerEditUnit(0), m_Dict(d) {}
AS_02::MXF::AS02IndexReader::~AS02IndexReader() {}