Skip to content

Commit

Permalink
Fix unused import warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
mainland committed Sep 16, 2014
1 parent 23f7d4e commit 7476569
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions System/Random.hs
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,11 @@ import Data.Ratio ( numerator, denominator )
#endif
import Data.Char ( isSpace, chr, ord )
import System.IO.Unsafe ( unsafePerformIO )
import Data.IORef ( IORef, atomicModifyIORef, newIORef, readIORef
, writeIORef )
import Data.IORef ( IORef, newIORef, readIORef, writeIORef )
#if MIN_VERSION_base (4,6,0)
import Data.IORef ( atomicModifyIORef' )
#else
import Data.IORef ( atomicModifyIORef )
#endif
import Numeric ( readDec )

Expand Down

0 comments on commit 7476569

Please sign in to comment.