summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}