about summary refs log tree commit diff stats
path: root/cpp/012transform
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/012transform')
-rw-r--r--cpp/012transform2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/012transform b/cpp/012transform
index 21bcf60f..e9b74776 100644
--- a/cpp/012transform
+++ b/cpp/012transform
@@ -51,5 +51,5 @@ void populate_value(reagent& r) {
   int result = strtol(r.name.c_str(), &end, /*any base*/0);
   if (*end != '\0') return;
 //?   cout << "setting value\n"; //? 1
-  r.value = result;
+  r.set_value(result);
 }