From: Thomas Schilling Date: Sun, 20 Jul 2008 16:41:33 +0000 (+0000) Subject: Fix Haddock errors. X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=5b2b8d3547136c6d271c38b4a21cba3c1d7d51b1 Fix Haddock errors. --- diff --git a/compiler/HsVersions.h b/compiler/HsVersions.h index 1622928..09c8d2e 100644 --- a/compiler/HsVersions.h +++ b/compiler/HsVersions.h @@ -24,12 +24,18 @@ you will screw up the layout where they are used in case expressions! /* Global variables may not work in other Haskell implementations, * but we need them currently! so the conditional on GLASGOW won't do. */ +#ifndef __HADDOCK__ #if defined(__GLASGOW_HASKELL__) || !defined(__GLASGOW_HASKELL__) #define GLOBAL_VAR(name,value,ty) \ {-# NOINLINE name #-}; \ name :: IORef (ty); \ name = Util.global (value); #endif +#else /* __HADDOCK__ */ +#define GLOBAL_VAR(name,value,ty) \ +name :: IORef (ty); \ +name = Util.global (value); +#endif #define COMMA ,