]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.runtime/scl/Serialization.scl
(refs #7430) Minor fix to Serialization module
[simantics/platform.git] / bundles / org.simantics.scl.runtime / scl / Serialization.scl
index 5ba1e0d94aab8a3a700e27bfc66a8957cbcb70bc..408de4d7ea39ced6ec5a58bb749a4abdaa28da42 100644 (file)
@@ -6,7 +6,7 @@ import "ArrayList" as ArrayList
 class IO a where
     write :: OutputStream -> a -> <Proc> ()
     read  :: InputStream -> <Proc> a
-    ioSize :: a -> Integer
+    ioSize :: a -> <Proc> Integer
     
     ioSize _ = fail "ioSize not implemented"