Created
April 18, 2014 20:48
-
-
Save paulrehkugler/11063725 to your computer and use it in GitHub Desktop.
Block Pointer - Doesn't work
This file contains 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
// trying to make a block pointer | |
typedef void (^DoingBadStuffWithBlocks)(); | |
DoingBadStuffWithBlocks *theCompilerHatesThis = &^{ | |
if (false) | |
{ | |
*theCompilerHatesThis(); | |
} | |
}(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment