From f6e6cfc3b5c7c84dedddc95084c423608769d4b7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 26 Apr 2017 12:43:15 +0200 Subject: Fix bug in pair handling --- build2/token.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build2/token.cxx') diff --git a/build2/token.cxx b/build2/token.cxx index a721239..6f2eae5 100644 --- a/build2/token.cxx +++ b/build2/token.cxx @@ -19,7 +19,7 @@ namespace build2 { case token_type::eos: os << ""; break; case token_type::newline: os << ""; break; - case token_type::pair_separator: os << ""; break; + case token_type::pair_separator: os << ""; break; case token_type::word: os << '\'' << t.value << '\''; break; case token_type::colon: os << q << ':' << q; break; -- cgit v1.1