summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar FrigoEU <simon.van.casteren@gmail.com>2019-07-29 11:15:53 +0200
committerGravatar FrigoEU <simon.van.casteren@gmail.com>2019-07-29 11:15:53 +0200
commit83bab4581d9570e151b23db3b4de016600afa76d (patch)
treedac92a7f9d72165a9cbea35576af1813d0716975 /src
parentbc67c873a23309d2ef9e8365e0a9b7f8f15577ca (diff)
Removed MISSED_DEP print
Diffstat (limited to 'src')
-rw-r--r--src/mod_db.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mod_db.sml b/src/mod_db.sml
index 2e2b9c6c..de428570 100644
--- a/src/mod_db.sml
+++ b/src/mod_db.sml
@@ -121,7 +121,8 @@ fun insert (d, tm, hasErrors) =
fun doMod (n', deps) =
case IM.find (!byId, n') of
NONE =>
- (TextIO.print ("MISSED_DEP: " ^ Int.toString n' ^"\n");
+ (
+ (* TextIO.print ("MISSED_DEP: " ^ Int.toString n' ^"\n"); *)
deps)
(* raise Fail ("ModDb: Trying to make dep tree but couldn't find module " ^ Int.toString n') *)
(* I feel like this should throw, but the dependency searching algorithm *)