summaryrefslogtreecommitdiff
path: root/src/KM_util.cpp
diff options
context:
space:
mode:
authormsheby <msheby@cinecert.com>2008-08-06 02:04:55 +0000
committermsheby <>2008-08-06 02:04:55 +0000
commit7827a7e7572601440568788cb028ee883498fa15 (patch)
tree9f724eafb99d62fe7dbe8900bdee90912392154b /src/KM_util.cpp
parent2571cbd0b62ed6564238369793dfc1b5a1ae1d8b (diff)
Eliminate warnings about copy constructors not getting initialized.
Diffstat (limited to 'src/KM_util.cpp')
-rwxr-xr-xsrc/KM_util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KM_util.cpp b/src/KM_util.cpp
index f80e4c7..b860b64 100755
--- a/src/KM_util.cpp
+++ b/src/KM_util.cpp
@@ -793,7 +793,7 @@ Kumu::Timestamp::AddHours(i32_t hours)
#endif // KM_WIN32
-Kumu::Timestamp::Timestamp(const Timestamp& rhs)
+Kumu::Timestamp::Timestamp(const Timestamp& rhs) : IArchive()
{
Year = rhs.Year;
Month = rhs.Month;