aboutsummaryrefslogtreecommitdiff
path: root/libbutl/pager.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/pager.hxx')
-rw-r--r--libbutl/pager.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/libbutl/pager.hxx b/libbutl/pager.hxx
index 12a6670..2c26bf3 100644
--- a/libbutl/pager.hxx
+++ b/libbutl/pager.hxx
@@ -68,10 +68,10 @@ namespace butl
using traits_type = std::streambuf::traits_type;
virtual int_type
- overflow (int_type);
+ overflow (int_type) override;
virtual int
- sync ();
+ sync () override;
private:
process p_;
@@ -80,5 +80,6 @@ namespace butl
std::string indent_;
int_type prev_ = '\n'; // Previous character.
std::streambuf* buf_ = nullptr;
+ bool skip_ = false;
};
}