about summary refs log tree commit diff stats
path: root/042name.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-22 11:51:36 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-22 11:51:36 -0800
commit7136ddd5ac12d3aa4d516f719dea37a027a25b5a (patch)
treec11e4ba47269076b39a96905b9d03b0765f639c4 /042name.cc
parentaff93bb2c1ea1a96fc110fad8b2dd84e0673f87f (diff)
downloadmu-7136ddd5ac12d3aa4d516f719dea37a027a25b5a.tar.gz
2473 - bad idea to use /raw with multiple intentions
/raw is to express absolute addresses
/unsafe is to sidestep type-checking in test setup
Diffstat (limited to '042name.cc')
-rw-r--r--042name.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/042name.cc b/042name.cc
index e9812624..8ef2f467 100644
--- a/042name.cc
+++ b/042name.cc
@@ -215,8 +215,8 @@ if (inst.name == "get" || inst.name == "get-address") {
 :(scenarios transform)
 :(scenario transform_names_handles_containers)
 recipe main [
-  a:point <- copy 0/raw
-  b:number <- copy 0/raw
+  a:point <- copy 0/unsafe
+  b:number <- copy 0/unsafe
 ]
 +name: assign a 1
 +name: assign b 3