
7 Apr
2007
7 Apr
'07
11:57 a.m.
Just a little nit: On Wed, Apr 04, 2007 at 03:44:24PM -0700, Bryan O'Sullivan wrote:
hunk ./Network.hs 1 -{-# OPTIONS_GHC -cpp #-} +{-# OPTIONS -cpp #-}
http://www.haskell.org/ghc/docs/latest/html/users_guide/pragmas.html#options... says: Previous versions of GHC accepted OPTIONS rather than OPTIONS_GHC, but that is now deprecated. and hugs (for one, not sure about other impls) doesn't support -cpp. I think {-# LANGUAGE CPP #-} is the prefered way of doing this. Thanks Ian