Skip to content

Instantly share code, notes, and snippets.

@mraleph
Created August 10, 2015 17:51
Show Gist options
  • Save mraleph/3a4d68a9a12925d9e431 to your computer and use it in GitHub Desktop.
Save mraleph/3a4d68a9a12925d9e431 to your computer and use it in GitHub Desktop.
#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