about summary refs log tree commit diff stats
path: root/077hash.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-22 15:40:44 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-22 15:40:44 -0800
commitbe45c431146bc0740a30c77ebd559840104c1140 (patch)
tree6b690a9821cd5fbcd722ce1861fb409dd2357b7a /077hash.cc
parent8abff87099450c3793274a7e3c13a713f4a31887 (diff)
downloadmu-be45c431146bc0740a30c77ebd559840104c1140.tar.gz
2685
Diffstat (limited to '077hash.cc')
-rw-r--r--077hash.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/077hash.cc b/077hash.cc
index 8c72779d..d483b235 100644
--- a/077hash.cc
+++ b/077hash.cc
@@ -122,7 +122,7 @@ size_t hash_mu_exclusive_container(size_t h, const reagent& r) {
   reagent variant = variant_type(r, tag);
   // todo: move this warning to container definition time
   if (has_property(variant, "ignore-for-hash"))
-    raise << get(Type, r.type->value).name << ": /ignore-for-hash won't work in exclusive containers\n";
+    raise << get(Type, r.type->value).name << ": /ignore-for-hash won't work in exclusive containers\n" << end();
   variant.set_value(r.value + /*skip tag*/1);
   h = hash(h, variant);
   return h;