no-warn-missing-methods for 0.10 ToJSON

This commit is contained in:
Julian K. Arni 2015-09-23 14:17:17 +02:00
parent 397db6b4b5
commit fe8408e272
2 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,7 @@
{-# LANGUAGE TypeOperators #-}
{-# OPTIONS_GHC -fcontext-stack=100 #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -fno-warn-missing-methods #-}
module Servant.ClientSpec where

View File

@ -4,6 +4,8 @@
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -fno-warn-missing-methods #-}
module Servant.API.ContentTypesSpec where
#if !MIN_VERSION_base(4,8,0)