diff options
Diffstat (limited to 'src/parse.cpp')
-rw-r--r-- | src/parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.cpp b/src/parse.cpp index a725ca6..2d3ea02 100644 --- a/src/parse.cpp +++ b/src/parse.cpp @@ -89,7 +89,7 @@ read_line_comment(Cursor& cur, istream& in) static const AST* read_list(PEnv& penv, Cursor& cur, istream& in) { - List<ATuple, const AST> list; + List list; eat_char(cur, in, '('); while (true) { |