executors
executors copied to clipboard
Fully qualify calls to std::forward to avoid ADL injection.
Is it the intent that the calls to forward<T> are unqualified? I ran into an issue where boost::forward (as part of the boost.move library was being found through ADL for boost types (specifically boost::shared_ptr).
I fixed it by fully qualifying all of the calls to forward, but I'm not sure if that's the correct change or not.