summaryrefslogtreecommitdiff
path: root/src/KM_fileio.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_fileio.cpp
parent2571cbd0b62ed6564238369793dfc1b5a1ae1d8b (diff)
Eliminate warnings about copy constructors not getting initialized.
Diffstat (limited to 'src/KM_fileio.cpp')
-rw-r--r--src/KM_fileio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/KM_fileio.cpp b/src/KM_fileio.cpp
index 918a852..57b28a8 100644
--- a/src/KM_fileio.cpp
+++ b/src/KM_fileio.cpp
@@ -484,7 +484,7 @@ Kumu::PathMatchRegex::PathMatchRegex(const std::string& s)
}
}
-Kumu::PathMatchRegex::PathMatchRegex(const PathMatchRegex& rhs) {
+Kumu::PathMatchRegex::PathMatchRegex(const PathMatchRegex& rhs) : IPathMatch() {
m_regex = rhs.m_regex;
}
@@ -527,7 +527,7 @@ Kumu::PathMatchGlob::PathMatchGlob(const std::string& glob)
}
}
-Kumu::PathMatchGlob::PathMatchGlob(const PathMatchGlob& rhs) {
+Kumu::PathMatchGlob::PathMatchGlob(const PathMatchGlob& rhs) : IPathMatch() {
m_regex = rhs.m_regex;
}