aboutsummaryrefslogtreecommitdiff
path: root/build2/b.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-01-21 08:47:07 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-01-21 08:47:07 +0200
commit075404d03607048609a6f1b226d8e2845806b838 (patch)
tree2b0a958928a19e013c9b3c559e25504876fe94ae /build2/b.cxx
parentc7c3fd96e97ae2ec3914d36cb920a6f02c9a3414 (diff)
Rename equal token to assign, etc
Diffstat (limited to 'build2/b.cxx')
-rw-r--r--build2/b.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/build2/b.cxx b/build2/b.cxx
index 04e7455..636951a 100644
--- a/build2/b.cxx
+++ b/build2/b.cxx
@@ -165,9 +165,9 @@ main (int argc, char* argv[])
token_type tt (l.next ().type);
- if (tt != token_type::equal &&
- tt != token_type::equal_plus &&
- tt != token_type::plus_equal)
+ if (tt != token_type::assign &&
+ tt != token_type::prepend &&
+ tt != token_type::append)
break;
parser p;