From dea2aed0b509734ec4e1cd163ac2a4f013000da2 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 11 Jun 2010 16:03:50 -0400 Subject: Untabified all source files --- src/mask.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/mask.h') 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 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(); -- cgit v1.2.3