summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <tstellar@gmail.com>2011-01-04 22:05:24 -0800
committerTom Stellard <tstellar@gmail.com>2011-01-04 22:05:24 -0800
commit034b517e572a926d3593834f9fff79207c9b61b0 (patch)
tree2dcd292bd7249c60121ea547155472e3d0199d59
parent7b627ff4167c0ebcaf8d9b6c7582438a40a18ee9 (diff)
Remove some debug statements
-rw-r--r--evaluator.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/evaluator.cpp b/evaluator.cpp
index a2a79e0..eccf579 100644
--- a/evaluator.cpp
+++ b/evaluator.cpp
@@ -1,6 +1,5 @@
#include <math.h>
-#include <stdio.h>
#include "evaluator.h"
#include "value.h"
@@ -180,7 +179,6 @@ rcp_evaluator::evaluate(
{
float val;
int float_type;
- fprintf(stderr, "RCP\n");
if (!l || !l->m_has_value) {
return default_evaluate(l, r);
}
@@ -203,7 +201,6 @@ rcp_evaluator::evaluate(
}
break;
}
- fprintf(stderr, "val=%f\n", val);
return new float_value(val);
}