Created
August 10, 2015 17:51
-
-
Save mraleph/3a4d68a9a12925d9e431 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
#define LIST(V) \ | |
V(A) \ | |
V(B) \ | |
V(C) | |
enum ListOfMyFavoriteEnglishLetters { | |
#define F(name) k##name, | |
LIST(F) | |
#undef F | |
}; | |
enum { | |
#define F(name) 1 + | |
kNumberOfMyFavoriteEnglishLetters = LIST(F) 0 | |
#undef F | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment