From 5b2b8d3547136c6d271c38b4a21cba3c1d7d51b1 Mon Sep 17 00:00:00 2001 From: Thomas Schilling Date: Sun, 20 Jul 2008 16:41:33 +0000 Subject: [PATCH] Fix Haddock errors. --- compiler/HsVersions.h | 6 ++++++ 1 file changed, 6 insertions(+) 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 , -- 1.7.10.4