summaryrefslogtreecommitdiff
path: root/src/mask.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-11 16:03:50 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-11 17:02:25 -0400
commitdea2aed0b509734ec4e1cd163ac2a4f013000da2 (patch)
tree7908da76c67ae5172882306a319bf26df81b73b4 /src/mask.h
parentd580079df892c30d023b3211d6c4611c17b11f8f (diff)
downloadfork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.gz
fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.bz2
fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.zip
Untabified all source files
Diffstat (limited to 'src/mask.h')
-rw-r--r--src/mask.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mask.h b/src/mask.h
index ed9e8ac1..e72347ad 100644
--- a/src/mask.h
+++ b/src/mask.h
@@ -85,13 +85,13 @@ public:
bool match(const string& text) const {
#if defined(HAVE_BOOST_REGEX_UNICODE)
DEBUG("mask.match",
- "Matching: \"" << text << "\" =~ /" << str() << "/ = "
- << (boost::u32regex_search(text, expr) ? "true" : "false"));
+ "Matching: \"" << text << "\" =~ /" << str() << "/ = "
+ << (boost::u32regex_search(text, expr) ? "true" : "false"));
return boost::u32regex_search(text, expr);
#else
DEBUG("mask.match",
- "Matching: \"" << text << "\" =~ /" << str() << "/ = "
- << (boost::regex_search(text, expr) ? "true" : "false"));
+ "Matching: \"" << text << "\" =~ /" << str() << "/ = "
+ << (boost::regex_search(text, expr) ? "true" : "false"));
return boost::regex_search(text, expr);
#endif
}
@@ -107,7 +107,7 @@ public:
unistring ustr;
std::basic_string<UChar32> expr_str = expr.str();
std::copy(expr_str.begin(), expr_str.end(),
- std::back_inserter(ustr.utf32chars));
+ std::back_inserter(ustr.utf32chars));
return ustr.extract();
#else
return expr.str();