1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef BOOST_PHOENIX_DEBUG_HPP
- #define BOOST_PHOENIX_DEBUG_HPP
- #include <iostream>
- #include <boost/phoenix/version.hpp>
- #include <boost/proto/proto.hpp>
- namespace boost { namespace phoenix
- {
-
-
-
-
-
-
-
-
- template<typename Expr>
- void display_expr(Expr const &expr, std::ostream &sout)
- {
- boost::proto::display_expr(expr,sout);
- }
-
-
- template<typename Expr>
- void display_expr(Expr const &expr)
- {
- boost::proto::display_expr(expr);
- }
- }
- }
- #endif
|