about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-19 13:57:43 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-19 13:57:46 -0800
commit8e1d1add72e8b367ded6995c26f287f0b544cabe (patch)
treecaddba7b9094841098d1bab1b5934b0f49d92b41 /010vm.cc
parent9f95c7451b940b6644cb6fd6783ea9c17168357e (diff)
downloadmu-8e1d1add72e8b367ded6995c26f287f0b544cabe.tar.gz
2686
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/010vm.cc b/010vm.cc
index ae262e42..052473eb 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -41,7 +41,7 @@ struct instruction {
   // End instruction Fields
   instruction();
   void clear();
-  bool is_clear();
+  bool is_empty();
 };
 
 :(before "struct instruction")
@@ -225,7 +225,7 @@ instruction::instruction() :is_label(false), operation(IDLE) {
   // End instruction Constructor
 }
 void instruction::clear() { is_label=false; label.clear(); name.clear(); old_name.clear(); operation=IDLE; ingredients.clear(); products.clear(); original_string.clear(); }
-bool instruction::is_clear() { return !is_label && name.empty(); }
+bool instruction::is_empty() { return !is_label && name.empty(); }
 
 // Reagents have the form <name>:<type>:<type>:.../<property>/<property>/...
 reagent::reagent(string s) :original_string(s), value(0), initialized(false), type(NULL) {