yesod/yesod-auth-oauth/include/qq.h
2012-01-24 05:44:07 +02:00

11 lines
177 B
C

-- CPP macro which choses which quasyquotes syntax to use depending
-- on GHC version.
--
-- QQ stands for quasyquote.
#if GHC7
# define QQ(x) x
#else
# define QQ(x) $x
#endif