about summary refs log tree commit diff stats
path: root/042name.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 /042name.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 '042name.cc')
-rw-r--r--042name.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/042name.cc b/042name.cc
index 9177a33d..b66de8a2 100644
--- a/042name.cc
+++ b/042name.cc
@@ -19,7 +19,7 @@ recipe main [
 # todo: detect conditional defines
 
 :(after "Begin Transforms")
-Transform.push_back(transform_names);
+Transform.push_back(transform_names);  // idempotent
 
 :(before "End Globals")
 map<recipe_ordinal, map<string, long long int> > Name;