made SML/NJ happy;
authorwenzelm
Thu, 22 Oct 2009 17:54:47 +0200
changeset 33073 2f6ce3b9ec39
parent 33072 ae416aebbb75
child 33074 e6eda76ad49e
made SML/NJ happy;
src/Pure/library.ML
--- a/src/Pure/library.ML	Thu Oct 22 17:09:29 2009 +0200
+++ b/src/Pure/library.ML	Thu Oct 22 17:54:47 2009 +0200
@@ -466,7 +466,7 @@
 
 fun map_range f i =
   let
-    fun mapp k =
+    fun mapp (k: int) =
       if k < i then f k :: mapp (k + 1) else [];
   in mapp 0 end;