diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/010vm | 2 | ||||
-rw-r--r-- | cpp/019address | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/010vm b/cpp/010vm index 5d3ddd53..8d1c71df 100644 --- a/cpp/010vm +++ b/cpp/010vm @@ -151,7 +151,7 @@ void setup_recipes() { //: Helpers :(code) -// indent members to avoid generating prototypes for them +// indent methods to avoid generating prototypes for them instruction::instruction() :is_label(false), operation(IDLE) {} void instruction::clear() { is_label=false; label.clear(); operation=IDLE; ingredients.clear(); products.clear(); } diff --git a/cpp/019address b/cpp/019address index 0b39c71d..58d852cd 100644 --- a/cpp/019address +++ b/cpp/019address @@ -47,7 +47,7 @@ bool has_property(reagent x, string name) { } reagent deref(reagent x) { -//? cout << "deref\n"; //? 1 +//? cout << "deref: " << x.to_string() << "\n"; //? 2 static const int ADDRESS = Type_number["address"]; reagent result; assert(x.types[0] == ADDRESS); |