From 0fd1f6d05779eb51c90360751c9a61933120a4de Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 9 Dec 2021 20:34:22 +0300 Subject: Add column argument to char_scanner constructor --- libbutl/char-scanner.txx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libbutl/char-scanner.txx') diff --git a/libbutl/char-scanner.txx b/libbutl/char-scanner.txx index 6e0063a..75ea189 100644 --- a/libbutl/char-scanner.txx +++ b/libbutl/char-scanner.txx @@ -11,9 +11,10 @@ namespace butl validator_type v, bool crlf, std::uint64_t l, + std::uint64_t c, std::uint64_t p) : line (l), - column (1), + column (c), position (p), is_ (is), val_ (std::move (v)), -- cgit v1.1