[project @ 2005-02-02 13:26:13 by simonpj]
[ghc-base.git] / Data / STRef.hs
index 3edfb87..d261cbf 100644 (file)
@@ -32,11 +32,6 @@ import GHC.STRef
 import Hugs.ST
 #endif
 
-import Data.Typeable
-
-#include "Typeable.h"
-INSTANCE_TYPEABLE2(STRef,stRefTc,"STRef")
-
 -- |Mutate the contents of an 'STRef'
 modifySTRef :: STRef s a -> (a -> a) -> ST s ()
 modifySTRef ref f = writeSTRef ref . f =<< readSTRef ref