From 0edc9471c773ab0ce0ae0abcffacf41e1440742d Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 12 Apr 2015 22:42:07 -0700 Subject: 1055 --- cpp/013run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/013run') diff --git a/cpp/013run b/cpp/013run index 0a1f6529..5ba9af70 100644 --- a/cpp/013run +++ b/cpp/013run @@ -144,7 +144,7 @@ void write_memory(reagent x, vector data) { if (is_dummy(x)) return; int base = x.value; if (size_of(x) != data.size()) - raise << "size mismatch in storing to " << x.to_string(); + raise << "size mismatch in storing to " << x.to_string() << '\n'; for (size_t offset = 0; offset < data.size(); ++offset) { trace("mem") << "storing " << data[offset] << " in location " << base+offset; Memory[base+offset] = data[offset]; -- cgit 1.4.1-2-gfad0 mmit Soul of a tiny new machine. More thorough tests → More comprehensible and rewrite-friendly software → More resilient society.Kartik K. Agaram <vc@akkartik.com>
about summary refs log blame commit diff stats