about summary refs log tree commit diff stats
path: root/057static_dispatch.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-06 17:29:52 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-06 17:29:52 -0800
commitb2e4056d6674515ed9ba3b56c40ec19c9b7eae3a (patch)
treee150b769e4a3df1b1a5336408cf8c4f3a573df0b /057static_dispatch.cc
parent57d01f212c8cddb14f585b3ab32984d11a9222e3 (diff)
downloadmu-b2e4056d6674515ed9ba3b56c40ec19c9b7eae3a.tar.gz
2383 - new concern: idempotence of transforms
I'd not paid any attention to it so far, but I need to do so from now
on.
Diffstat (limited to '057static_dispatch.cc')
-rw-r--r--057static_dispatch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/057static_dispatch.cc b/057static_dispatch.cc
index c2184c93..8a35f086 100644
--- a/057static_dispatch.cc
+++ b/057static_dispatch.cc
@@ -104,7 +104,7 @@ recipe test a:number, b:number -> z:number [
 
 //: after insert_fragments (tangle) and before computing operation ids
 :(before "Transform.push_back(deduce_types_from_header)")
-Transform.push_back(resolve_ambiguous_calls);
+Transform.push_back(resolve_ambiguous_calls);  // idempotent
 
 :(code)
 void resolve_ambiguous_calls(recipe_ordinal r) {