We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
<>
1 parent 316120b commit c065c25Copy full SHA for c065c25
1 file changed
src/Foreign/Lua/Module/DocLayout.hs
@@ -1,3 +1,4 @@
1
+{-# LANGUAGE CPP #-}
2
{-# LANGUAGE FlexibleInstances #-}
3
{-# LANGUAGE LambdaCase #-}
4
{-# OPTIONS_GHC -fno-warn-orphans #-}
@@ -69,6 +70,10 @@ import qualified Foreign.Lua.Types.Peekable as Lua
69
70
import qualified Foreign.Lua.Userdata as Lua
71
import qualified Text.DocLayout as Doc
72
73
+#if ! MIN_VERSION_base(4, 11, 0)
74
+import Data.Monoid ((<>))
75
+#endif
76
+
77
--
78
-- Module
79
0 commit comments