X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.scl.runtime%2Fscl%2FSList.scl;h=5233955feeaf60fd47efa441663a0be6451fe13e;hp=6622598c744e6c48eb9126637ee93ab0dced96e3;hb=a8758de5bc19e5adb3f618d3038743a164f09912;hpb=12d9af17384d960b75d58c3935d2b7b46d93e87b 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