diff options
| author | msheby <msheby@cinecert.com> | 2008-08-06 02:04:55 +0000 |
|---|---|---|
| committer | msheby <> | 2008-08-06 02:04:55 +0000 |
| commit | 7827a7e7572601440568788cb028ee883498fa15 (patch) | |
| tree | 9f724eafb99d62fe7dbe8900bdee90912392154b /src/S12MTimecode.h | |
| parent | 2571cbd0b62ed6564238369793dfc1b5a1ae1d8b (diff) | |
Eliminate warnings about copy constructors not getting initialized.
Diffstat (limited to 'src/S12MTimecode.h')
| -rw-r--r-- | src/S12MTimecode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/S12MTimecode.h b/src/S12MTimecode.h index 0a88528..88c16f8 100644 --- a/src/S12MTimecode.h +++ b/src/S12MTimecode.h @@ -58,7 +58,7 @@ public: DecodeString(tc); } - S12MTimecode(const S12MTimecode& rhs) : m_FrameCount(0), m_FPS(0) + S12MTimecode(const S12MTimecode& rhs) : IArchive(), m_FrameCount(0), m_FPS(0) { m_FPS = rhs.m_FPS; m_FrameCount = rhs.m_FrameCount; |
