From 653b2477db81f3adbd8566fe4b30af6219d0466e Mon Sep 17 00:00:00 2001
From: Houtan Bastani <houtan@dynare.org>
Date: Wed, 18 Dec 2019 11:26:07 +0100
Subject: [PATCH] Update for bison 3.5

---
 src/macro/Expressions.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/macro/Expressions.hh b/src/macro/Expressions.hh
index 668051e4..d6b6d868 100644
--- a/src/macro/Expressions.hh
+++ b/src/macro/Expressions.hh
@@ -52,7 +52,7 @@ namespace macro
     void push(const string &prefix, const Tokenizer::location &location)
     {
       stringstream ss;
-      unsigned end_col = 0 < location.end.column ? location.end.column - 1 : 0;
+      auto end_col = 0 < location.end.column ? location.end.column - 1 : 0;
 
       ss << prefix << ": "
          << R"(")" << *location.begin.filename << R"(" line )" << location.begin.line
-- 
GitLab