From c9860305f0e43b6c2b77d7dac885ca857f8126a9 Mon Sep 17 00:00:00 2001 From: Felipe Lema <1232306+FelipeLema@users.noreply.github.com> Date: Mon, 12 Apr 2021 14:47:33 -0400 Subject: [PATCH] fix type --- src/position.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/position.hh b/src/position.hh index 250cdead..a227ae26 100644 --- a/src/position.hh +++ b/src/position.hh @@ -37,7 +37,7 @@ protected: * use for lexicographic comparison */ auto asTuple() const -> std::tuple { - return std::make_tuple(line, tuple); + return std::make_tuple(line, column); } };