diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-11 11:01:20 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-14 23:01:38 +0000 |
| commit | 10f26f1377b843f091467a936ccbe8aebc92f9c0 (patch) | |
| tree | 3121fba841900207653519079a8f34cfece220a7 /src/h__02_Reader.cpp | |
| parent | 82b04f26012d2df2480de833b5ecc4eaef29d428 (diff) | |
Fix constructor initializer order.
Diffstat (limited to 'src/h__02_Reader.cpp')
| -rw-r--r-- | src/h__02_Reader.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/h__02_Reader.cpp b/src/h__02_Reader.cpp index b83fdff..5a0f731 100644 --- a/src/h__02_Reader.cpp +++ b/src/h__02_Reader.cpp @@ -25,7 +25,7 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ +*/ /*! \file h__02_Reader.cpp \version $Id: h__02_Reader.cpp,v 1.15 2015/10/12 15:30:46 jhurst Exp $ \brief MXF file reader base class @@ -62,14 +62,14 @@ 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() {} -// +// Result_t AS_02::MXF::AS02IndexReader::InitFromFile(const Kumu::FileReader& reader, const ASDCP::MXF::RIP& rip, const bool has_header_essence) { @@ -198,7 +198,7 @@ AS_02::MXF::AS02IndexReader::InitFromFile(const Kumu::FileReader& reader, const if ( KM_SUCCESS(result) ) { std::list<InterchangeObject*>::const_iterator ii; - + for ( ii = m_PacketList->m_List.begin(); ii != m_PacketList->m_List.end(); ++ii ) { IndexTableSegment *segment = dynamic_cast<IndexTableSegment*>(*ii); |
