]> gitweb.michael.orlitzky.com - dead/htsn-import.git/commitdiff
Fixing compiler warnings by exporting stuff that shouldn't be exported (woo).
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 14 Jan 2014 00:20:52 +0000 (19:20 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 14 Jan 2014 00:20:52 +0000 (19:20 -0500)
src/TSN/XML/Injuries.hs
src/TSN/XML/InjuriesDetail.hs

index a93d788dd60f8cda40244f9b1574976211b0c9a4..8002799c62e0e26f4bb7217740ac4651aaa0235f 100644 (file)
@@ -15,7 +15,9 @@
 --
 module TSN.XML.Injuries (
   injuries_tests,
-  pickle_message )
+  pickle_message,
+  -- * WARNING: these are private but exported to silence warnings
+  ListingConstructor(..) )
 where
 
 import Data.Data ( Data )
index 3f8be8f4ccd118caf61fbf1f3a1bc5f8345d4568..171b879a79726aff861cd6a3744f9b9ed95a4ded 100644 (file)
@@ -18,7 +18,9 @@
 --
 module TSN.XML.InjuriesDetail (
   injuries_detail_tests,
-  pickle_message )
+  pickle_message,
+  -- * WARNING: these are private but exported to silence warnings
+  PlayerListingConstructor(..) )
 where
 
 import Data.Time ( UTCTime )