From: Wolfgang T. <wth...@us...> - 2005-03-31 20:44:20
|
Update of /cvsroot/hoc/hoc/HOC In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4074/HOC Modified Files: HOC.hs Log Message: This is GHC 6.4 Template Haskell, so we don't need to reexport the InstanceVariables class any more (and this also helps work around a GHC 6.4 bug) Index: HOC.hs =================================================================== RCS file: /cvsroot/hoc/hoc/HOC/HOC.hs,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- HOC.hs 31 Mar 2005 16:37:58 -0000 1.8 +++ HOC.hs 31 Mar 2005 20:44:10 -0000 1.9 @@ -35,12 +35,7 @@ -- debugging & statistics: - objectMapStatistics, - - -- things that shouldn't really be exported - InstanceVariables(..), - initializeInstanceVariables, - Typeable(..) + objectMapStatistics ) where import HOC.Base @@ -56,6 +51,3 @@ import HOC.ExportClass import HOC.Utilities import HOC.NewlyAllocated - -import Data.Typeable - |