From 83d9458cac02a97efc7bc1c3c4b1d71bf7b048a6 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 13 Jan 2014 19:20:52 -0500 Subject: [PATCH] Fixing compiler warnings by exporting stuff that shouldn't be exported (woo). --- src/TSN/XML/Injuries.hs | 4 +++- src/TSN/XML/InjuriesDetail.hs | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/TSN/XML/Injuries.hs b/src/TSN/XML/Injuries.hs index a93d788..8002799 100644 --- a/src/TSN/XML/Injuries.hs +++ b/src/TSN/XML/Injuries.hs @@ -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 ) diff --git a/src/TSN/XML/InjuriesDetail.hs b/src/TSN/XML/InjuriesDetail.hs index 3f8be8f..171b879 100644 --- a/src/TSN/XML/InjuriesDetail.hs +++ b/src/TSN/XML/InjuriesDetail.hs @@ -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 ) -- 2.43.2