Commit 048b6744 authored by Tom Niget's avatar Tom Niget

Fix const thing

parent 04557080
......@@ -1024,7 +1024,7 @@ auto bind(S &&, const F &func) {
}
template <typename S, typename A, typename... T>
decltype(auto) bind(S &&, const A &attr, T...) {
decltype(auto) bind(S &&, A &attr, T...) {
return attr;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment