aboutsummaryrefslogtreecommitdiffhomepage
path: root/wildcard.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-07 17:06:45 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-07 17:36:54 -0800
commita0a43046b3b21853fdec115dd35f1def9c312670 (patch)
treedb3e668d3da07dbe1a146ff06edb789da42cab03 /wildcard.h
parente8af86017a4b072a9b03d914e34c24e387dac3f3 (diff)
Removed discriminated union from block_t type, allowing us to store wcstrings in it
Diffstat (limited to 'wildcard.h')
-rw-r--r--wildcard.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/wildcard.h b/wildcard.h
index 9da7d716..8425c5cb 100644
--- a/wildcard.h
+++ b/wildcard.h
@@ -79,8 +79,7 @@ int wildcard_expand_string(const wcstring &wc, const wcstring &base_dir, int fla
\param wc The wildcard to test against
\return true if the wildcard matched
*/
-int wildcard_match( const wchar_t *str,
- const wchar_t *wc );
+int wildcard_match( const wcstring &str, const wcstring &wc );
/**