about summary refs log tree commit diff stats
path: root/043space.cc
diff options
context:
space:
mode:
Diffstat (limited to '043space.cc')
-rw-r--r--043space.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/043space.cc b/043space.cc
index f16240ca..c9a0e7dc 100644
--- a/043space.cc
+++ b/043space.cc
@@ -82,7 +82,7 @@ long long int address(long long int offset, long long int base) {
 
 //:: reads and writes to the 'default-space' variable have special behavior
 
-:(after "void write_memory(reagent x, vector<double> data)")
+:(after "void write_memory(reagent x, const vector<double>& data)")
   if (x.name == "default-space") {
     if (!scalar(data)
         || !x.type
@@ -188,7 +188,7 @@ if (curr.name == "new-default-space") {
       raise << "no space allocated for default-space in recipe " << current_recipe_name() << "; are you using names?\n" << end();
     return result;
   }
-:(after "void write_memory(reagent x, vector<double> data)")
+:(after "void write_memory(reagent x, const vector<double>& data)")
   if (x.name == "number-of-locals") {
     raise << maybe(current_recipe_name()) << "can't write to special name 'number-of-locals'\n" << end();
     return;