summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Wavefront/Lex.hs (renamed from src/Wavefront.hs)2
-rw-r--r--test/bench.hs2
-rw-r--r--wavefront-obj.cabal2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Wavefront.hs b/src/Wavefront/Lex.hs
index c5c8d1b..501549f 100644
--- a/src/Wavefront.hs
+++ b/src/Wavefront/Lex.hs
@@ -1,6 +1,6 @@
1{-# LANGUAGE NondecreasingIndentation #-} 1{-# LANGUAGE NondecreasingIndentation #-}
2{-# LANGUAGE OverloadedStrings #-} 2{-# LANGUAGE OverloadedStrings #-}
3module Wavefront where 3module Wavefront.Lex where
4 4
5import qualified Data.ByteString.Lazy.Char8 as L 5import qualified Data.ByteString.Lazy.Char8 as L
6import qualified Data.ByteString.Char8 as S 6import qualified Data.ByteString.Char8 as S
diff --git a/test/bench.hs b/test/bench.hs
index bf60303..3c4cf1e 100644
--- a/test/bench.hs
+++ b/test/bench.hs
@@ -22,7 +22,7 @@ import Codec.Wavefront.Token ( tokenize )
22import qualified Graphics.WaveFront.Parse as Parse 22import qualified Graphics.WaveFront.Parse as Parse
23import qualified Graphics.WaveFront.Parse.Common as Parse 23import qualified Graphics.WaveFront.Parse.Common as Parse
24 24
25import Wavefront 25import Wavefront.Lex
26 26
27import Criterion.Main 27import Criterion.Main
28#ifdef WEIGH 28#ifdef WEIGH
diff --git a/wavefront-obj.cabal b/wavefront-obj.cabal
index a1087df..b5cd8df 100644
--- a/wavefront-obj.cabal
+++ b/wavefront-obj.cabal
@@ -48,7 +48,7 @@ library
48 , Codec.Wavefront.Face 48 , Codec.Wavefront.Face
49 , Codec.Wavefront.FreeForm 49 , Codec.Wavefront.FreeForm
50 , Codec.Wavefront.Token 50 , Codec.Wavefront.Token
51 , Wavefront 51 , Wavefront.Lex
52 -- other-modules: 52 -- other-modules:
53 other-extensions: ForeignFunctionInterface 53 other-extensions: ForeignFunctionInterface
54 , UnicodeSyntax 54 , UnicodeSyntax