summaryrefslogtreecommitdiff
path: root/lib/common/ExcludeList.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2006-10-16 23:23:03 +0000
committerChris Wilson <chris+github@qwirx.com>2006-10-16 23:23:03 +0000
commitaa04aefdbd2fcd1fd288b78719f474e6b6fa77fb (patch)
tree69f3ec5be0c1b7e66a7de9fc718a460308a7b7dd /lib/common/ExcludeList.h
parent55eb800fe8eb48a13e7f45671284ce5eb536fbee (diff)
Match case-insensitively on Win32. (refs #3)
Diffstat (limited to 'lib/common/ExcludeList.h')
-rw-r--r--lib/common/ExcludeList.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/common/ExcludeList.h b/lib/common/ExcludeList.h
index 720b6788..522ee370 100644
--- a/lib/common/ExcludeList.h
+++ b/lib/common/ExcludeList.h
@@ -63,6 +63,11 @@ private:
std::vector<std::string> mRegexStr; // save original regular expression string-based source for Serialize
#endif
+#ifdef WIN32
+ std::string ReplaceSlashesDefinite(const std::string& input) const;
+ std::string ReplaceSlashesRegex (const std::string& input) const;
+#endif
+
// For exceptions to the excludes
ExcludeList *mpAlwaysInclude;
};