diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-12 22:42:07 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-12 22:42:07 -0700 |
commit | 0edc9471c773ab0ce0ae0abcffacf41e1440742d (patch) | |
tree | b5f7242ed993b796a50c4bdb79ff1ae3d734bcc9 /cpp/013run | |
parent | 5a9520332a70f8d2e86bc3564bcd4bffde182e87 (diff) | |
download | mu-0edc9471c773ab0ce0ae0abcffacf41e1440742d.tar.gz |
1055
Diffstat (limited to 'cpp/013run')
-rw-r--r-- | cpp/013run | 2 |
1 files changed, 1 insertions, 1 deletions
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<int> 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]; |