diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-21 23:06:29 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-21 23:06:31 +0200 |
| commit | 48feccc34ebb795b2547823e34c2cd042ec2c7e8 (patch) | |
| tree | 981616d5d9bc3d0055e2f68d7714c750fa63b054 /src/AS_DCP_internal.h | |
| parent | 5b6546adf40a57436ff040349c41cb06f6fbd3c8 (diff) | |
Fix ordering in member initializer lists.
Diffstat (limited to 'src/AS_DCP_internal.h')
| -rwxr-xr-x | src/AS_DCP_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AS_DCP_internal.h b/src/AS_DCP_internal.h index 249ca2f..9d3fee9 100755 --- a/src/AS_DCP_internal.h +++ b/src/AS_DCP_internal.h @@ -226,7 +226,7 @@ extern MXF::RIP *g_RIP; Kumu::fpos_t m_LastPosition; TrackFileReader(const Dictionary* d, const Kumu::IFileReaderFactory& fileReaderFactory) : - m_HeaderPart(m_Dict), m_IndexAccess(m_Dict), m_RIP(m_Dict), m_Dict(d) + m_Dict(d), m_HeaderPart(m_Dict), m_IndexAccess(m_Dict), m_RIP(m_Dict) { default_md_object_init(); m_File = fileReaderFactory.CreateFileReader(); |
