95fac329a6
This commit begins the reorganization of the servant-client project so as to allow multiple backends, and also begins some much-needed refactoring of the servant-client code.
8 lines
210 B
C
8 lines
210 B
C
#if __GLASGOW_HASKELL__ >= 710
|
|
#define OVERLAPPABLE_ {-# OVERLAPPABLE #-}
|
|
#define OVERLAPPING_ {-# OVERLAPPING #-}
|
|
#else
|
|
{-# LANGUAGE OverlappingInstances #-}
|
|
#define OVERLAPPABLE_
|
|
#define OVERLAPPING_
|
|
#endif
|