X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scl.runtime%2Fscl%2FSList.scl;h=5233955feeaf60fd47efa441663a0be6451fe13e;hb=d9856d2391ee17f815a43dad74d9dc6318a1878c;hp=6622598c744e6c48eb9126637ee93ab0dced96e3;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.scl.runtime/scl/SList.scl b/bundles/org.simantics.scl.runtime/scl/SList.scl index 6622598c7..5233955fe 100644 --- a/bundles/org.simantics.scl.runtime/scl/SList.scl +++ b/bundles/org.simantics.scl.runtime/scl/SList.scl @@ -2,9 +2,7 @@ import "Prelude" data SList a = Nil | Cons a (SList a) -deriving instance (Eq a) => Eq (SList a) deriving instance (Ord a) => Ord (SList a) -deriving instance (Hashable a) => Hashable (SList a) deriving instance (Show a) => Show (SList a) @inline