stage3/print_datatypes_error.cc
changeset 484 f78750994a82
parent 483 7f839fb100c1
child 485 835697564c6d
--- a/stage3/print_datatypes_error.cc	Wed Mar 14 10:51:49 2012 +0000
+++ b/stage3/print_datatypes_error.cc	Wed Mar 14 11:14:41 2012 +0000
@@ -912,30 +912,14 @@
 void *print_datatypes_error_c::visit( DIV_operator_c *symbol) {return print_binary_operator_errors("DIV" , symbol, symbol->deprecated_operation);}
 void *print_datatypes_error_c::visit( MOD_operator_c *symbol) {return print_binary_operator_errors("MOD" , symbol);}
 
-void *print_datatypes_error_c::visit(GT_operator_c *symbol) {
-	return NULL;
-}
-
-void *print_datatypes_error_c::visit(GE_operator_c *symbol) {
-	return NULL;
-}
-
-void *print_datatypes_error_c::visit(EQ_operator_c *symbol) {
-	return NULL;
-}
-
-void *print_datatypes_error_c::visit(LT_operator_c *symbol) {
-	return NULL;
-}
-
-void *print_datatypes_error_c::visit(LE_operator_c *symbol) {
-	return NULL;
-}
-
-void *print_datatypes_error_c::visit(NE_operator_c *symbol) {
-	return NULL;
-}
-
+void *print_datatypes_error_c::visit(  GT_operator_c *symbol) {return print_binary_operator_errors( "GT" , symbol);}
+void *print_datatypes_error_c::visit(  GE_operator_c *symbol) {return print_binary_operator_errors( "GE" , symbol);}
+void *print_datatypes_error_c::visit(  EQ_operator_c *symbol) {return print_binary_operator_errors( "EQ" , symbol);}
+void *print_datatypes_error_c::visit(  LT_operator_c *symbol) {return print_binary_operator_errors( "LT" , symbol);}
+void *print_datatypes_error_c::visit(  LE_operator_c *symbol) {return print_binary_operator_errors( "LE" , symbol);}
+void *print_datatypes_error_c::visit(  NE_operator_c *symbol) {return print_binary_operator_errors( "NE" , symbol);}
+
+  
 void *print_datatypes_error_c::visit(CAL_operator_c *symbol) {
 	return NULL;
 }