2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-14 13:02:10 +00:00

[phoenix]

- Made the Context parameter appear uniformly as the last argument to an
      evaluation function



[SVN r70305]
This commit is contained in:
Thomas Heller
2011-03-21 10:15:04 +00:00
parent 31eee0f607
commit fae8c02168
75 changed files with 4652 additions and 4220 deletions

View File

@@ -52,7 +52,7 @@ main()
BOOST_TEST((arg1[3])(v) == "d");
map<string, int> m;
(arg1[std::string("Kimpo")] = arg2)(m, x);
(arg1["Kimpo"] = arg2)(m, x);
BOOST_TEST(m["Kimpo"] == x);
}