summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/StringUtil.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-02-10 12:23:44 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-02-10 12:23:44 +0000
commit50a9bc07bf0e76b7bdf993e611037539f42aa385 (patch)
treea992a0bfc655023325f4856758f7649ab5fcdc5c /cpp/include/IceUtil/StringUtil.h
parentadding bidir (diff)
downloadice-50a9bc07bf0e76b7bdf993e611037539f42aa385.tar.bz2
ice-50a9bc07bf0e76b7bdf993e611037539f42aa385.tar.xz
ice-50a9bc07bf0e76b7bdf993e611037539f42aa385.zip
Fixed match method to optionally match period (useful for IcePack)
Diffstat (limited to 'cpp/include/IceUtil/StringUtil.h')
-rw-r--r--cpp/include/IceUtil/StringUtil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/IceUtil/StringUtil.h b/cpp/include/IceUtil/StringUtil.h
index c5ceaa45326..a0f5bce8145 100644
--- a/cpp/include/IceUtil/StringUtil.h
+++ b/cpp/include/IceUtil/StringUtil.h
@@ -41,7 +41,7 @@ ICE_UTIL_API std::string::size_type checkQuote(const std::string&, std::string::
// other than a period (`.'). We match by hand here because
// it's portable across platforms (whereas regex() isn't).
//
-ICE_UTIL_API bool match(const std::string&, const std::string&);
+ICE_UTIL_API bool match(const std::string&, const std::string&, bool = false);
}