summaryrefslogtreecommitdiff
path: root/TypeInternals.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-01-08 15:54:14 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-01-08 15:54:14 -0400
commita78b0555e1d46c4548cda3aaa1709040f6fa7f33 (patch)
tree9313997b7a9e3758b27cf79c0319d730397421a4 /TypeInternals.hs
parent32b0e103909035ad0f25427c57a1ff504aefcada (diff)
New migrate subcommand can be used to switch files to using a different backend, safely and with no duplication of content.
Diffstat (limited to 'TypeInternals.hs')
-rw-r--r--TypeInternals.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/TypeInternals.hs b/TypeInternals.hs
index fe6e562f9..12a9080b3 100644
--- a/TypeInternals.hs
+++ b/TypeInternals.hs
@@ -103,3 +103,6 @@ data Backend = Backend {
instance Show Backend where
show backend = "Backend { name =\"" ++ name backend ++ "\" }"
+
+instance Eq Backend where
+ a == b = name a == name b