summaryrefslogtreecommitdiff
path: root/mask.cc
diff options
context:
space:
mode:
Diffstat (limited to 'mask.cc')
-rw-r--r--mask.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/mask.cc b/mask.cc
index 11700a51..85a7570c 100644
--- a/mask.cc
+++ b/mask.cc
@@ -4,7 +4,9 @@
#include <cstdlib>
-mask_t::mask_t(const std::string& pat) : exclude(false)
+namespace ledger {
+
+mask_t::mask_t(const string& pat) : exclude(false)
{
const char * p = pat.c_str();
@@ -22,3 +24,5 @@ mask_t::mask_t(const std::string& pat) : exclude(false)
expr.assign(p);
}
+
+} // namespace ledger