diff options
Diffstat (limited to 'src/mask.h')
-rw-r--r-- | src/mask.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -63,6 +63,11 @@ public: void write(std::ostream& out) const; }; +inline std::ostream& operator<<(std::ostream& out, const mask_t& mask) { + out << mask.expr.str(); + return out; +} + } // namespace ledger #endif // _MASK_H |