Opened 11 years ago
Closed 11 years ago
#5782 closed Patches (fixed)
Patch for <boost/phoenix/bind/bind_function.hpp>
Reported by: | Owned by: | Thomas Heller | |
---|---|---|---|
Milestone: | Boost 1.48.0 | Component: | phoenix |
Version: | Boost 1.47.0 | Severity: | Problem |
Keywords: | Cc: |
Description
The following fails to compile.
code from Gabriel Redner
#include <boost/phoenix/bind/bind_function.hpp> #include <boost/phoenix/core/argument.hpp> #include <iostream> using namespace boost::phoenix; using namespace boost::phoenix::placeholders; void foo(int n) { std::cout << n << std::endl; } int main() { bind(&foo, arg1)(4); }
Patch attached.
Attachments (1)
Change History (3)
by , 11 years ago
Attachment: | bind_function.patch added |
---|
comment:2 by , 11 years ago
Milestone: | To Be Determined → Boost 1.48.0 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
patch