- Dependencies were disabled during TDB2 development and not re-enabled.  Oops.
- Removed stray debug statement.
This commit is contained in:
Paul Beckingham 2011-09-11 13:23:47 -04:00
parent dcc0ab19c2
commit 19f598419e
2 changed files with 10 additions and 11 deletions

View file

@ -238,7 +238,7 @@ void E9::operator_negate (Arg& result, Arg& right)
result = coerce (right, Arg::type_number);
result._value = format (- strtod (result._value.c_str (), NULL));
std::cout << "# <operator_negate> " << right << " --> " << result << "\n";
// std::cout << "# <operator_negate> " << right << " --> " << result << "\n";
}
////////////////////////////////////////////////////////////////////////////////