summaryrefslogtreecommitdiff
path: root/src/Hakyll/Core
diff options
context:
space:
mode:
Diffstat (limited to 'src/Hakyll/Core')
-rw-r--r--src/Hakyll/Core/Identifier/Pattorn.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Hakyll/Core/Identifier/Pattorn.hs b/src/Hakyll/Core/Identifier/Pattorn.hs
index 0910320..e1767c4 100644
--- a/src/Hakyll/Core/Identifier/Pattorn.hs
+++ b/src/Hakyll/Core/Identifier/Pattorn.hs
@@ -11,6 +11,8 @@ newtype Pattorn = Pattorn { getPattern :: Pattern }
instance Semigroup Pattorn where
Pattorn a <> Pattorn b = Pattorn $ a .||. b
+ {-# INLINE (<>) #-}
instance Monoid Pattorn where
mempty = Pattorn $ complement mempty
+ {-# INLINE mempty #-}