Short circuit export list when compiling spec

This commit is contained in:
Daniel Gröber 2014-07-17 16:15:02 +02:00
parent 0e17e8e15a
commit 3c1b560068
1 changed files with 6 additions and 2 deletions

View File

@ -1,13 +1,17 @@
{-# LANGUAGE CPP #-}
module Language.Haskell.GhcMod.Find (
module Language.Haskell.GhcMod.Find
#ifndef SPEC
(
Symbol
, SymbolDb
, loadSymbolDb
, lookupSymbol
, dumpSymbol
, findSymbol
) where
)
#endif
where
import Config (cProjectVersion,cTargetPlatformString)
import Control.Applicative ((<$>))