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

[phoenix]

- Added documention for the function adaption macros
    - Added the What's new section
    - Fixed some bugs
    - Added basic support for phx2 result type deduction, not in production yet

[spirit]
    - Made necessary changes that reflect latest phoenix internal changes



[SVN r71227]
This commit is contained in:
Thomas Heller
2011-04-13 19:09:59 +00:00
parent 63e12d5c12
commit 74722b8e46
137 changed files with 6191 additions and 2429 deletions

View File

@@ -14,11 +14,7 @@ using boost::phoenix::function;
struct is_odd_
{
template <typename Arg>
struct result
{
typedef bool type;
};
typedef bool result_type;
template <typename Arg>
bool operator()(Arg arg1) const