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/KM_util.cpp | |
| parent | 2571cbd0b62ed6564238369793dfc1b5a1ae1d8b (diff) | |
Eliminate warnings about copy constructors not getting initialized.
Diffstat (limited to 'src/KM_util.cpp')
| -rwxr-xr-x | src/KM_util.cpp | 2 |
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; |
