Skip to content

Instantly share code, notes, and snippets.

@castaneai
Created July 8, 2014 13:14
Show Gist options
  • Save castaneai/3d671d5fc9263ba9f4d7 to your computer and use it in GitHub Desktop.
Save castaneai/3d671d5fc9263ba9f4d7 to your computer and use it in GitHub Desktop.
typedef std function
#include <iostream>
#include <functional>
typedef std::function<void()> ThreadFunc;
int main(){
ThreadFunc a = []{};
a();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment