| 93 | |
| 94 | struct truth_value : bool_expr { |
| 95 | virtual ~truth_value() { } |
| 96 | const char *op; |
| 97 | virtual void out(std::ostream &out) { out << op; } |
| 98 | truth_value(prod *p) : bool_expr(p) { |
nothing calls this directly
no outgoing calls
no test coverage detected