Skip to content

Commit

Permalink
Change back strict Map to lazy Map, so the dependent API is nicer
Browse files Browse the repository at this point in the history
  • Loading branch information
errge committed Jun 28, 2013
1 parent 3109299 commit 95ebe9f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions HFlags.hs
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,11 @@ import Data.Function
import Data.List
import Data.IORef
import Data.Maybe
import qualified Data.Map.Strict as Map
import Data.Map (Map, (!))
-- This is intentionally lazy, so dependent defaults are only
-- evaluated if they are needed. (The user hasn't specified the
-- option in the command line or via environment variables.)
import qualified Data.Map.Lazy as Map
import Data.Map.Lazy (Map, (!))
import qualified Data.Text
import Language.Haskell.TH
import System.Console.GetOpt
Expand Down

0 comments on commit 95ebe9f

Please sign in to comment.