about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-01-20 14:52:40 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-01-20 14:52:40 -0800
commit1102f7d7852603a1f6fc983d7027c600161428b4 (patch)
tree6c5237b5720d5bd26a3c53a4b766d7332f5ccdce
parent58eb6ee2353c069806734abdbecc85df96db6ae4 (diff)
downloadmu-1102f7d7852603a1f6fc983d7027c600161428b4.tar.gz
2578
-rw-r--r--021check_instruction.cc4
-rw-r--r--022arithmetic.cc4
2 files changed, 4 insertions, 4 deletions
diff --git a/021check_instruction.cc b/021check_instruction.cc
index 717f1ca6..58fd395f 100644
--- a/021check_instruction.cc
+++ b/021check_instruction.cc
@@ -136,10 +136,6 @@ bool types_strictly_match(type_tree* lhs, type_tree* rhs) {
   return types_strictly_match(lhs->left, rhs->left) && types_strictly_match(lhs->right, rhs->right);
 }
 
-bool is_raw(const reagent& r) {
-  return has_property(r, "raw");
-}
-
 bool is_unsafe(const reagent& r) {
   return has_property(r, "unsafe");
 }
diff --git a/022arithmetic.cc b/022arithmetic.cc
index 5181ed9d..dc191efa 100644
--- a/022arithmetic.cc
+++ b/022arithmetic.cc
@@ -104,6 +104,10 @@ case SUBTRACT: {
   products.at(0).push_back(result);
   break;
 }
+:(code)
+bool is_raw(const reagent& r) {
+  return has_property(r, "raw");
+}
 
 :(scenario subtract_literal)
 recipe main [