Created
September 21, 2015 16:51
-
-
Save wjwwood/855d8d3bd01d798f3b95 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void create_subscription(..., std::function<void()> callback); | |
| void create_subscription(..., std::function<void(const T & message)> callback); | |
| create_subscription(..., []() -> void {}); // This is an ambiguous call on Windows. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment