Remove nested expressions
[babeltrace.git] / formats / ctf / metadata / ctf-visitor-xml.c
index 0276f836806fa8a1f97d7c03d8a22044adee0821..3c1d37e74827b7e1b7a7034361f7cd45330297b3 100644 (file)
@@ -104,16 +104,6 @@ int ctf_visitor_print_unary_expression(FILE *fd, int depth, struct ctf_node *nod
                print_tabs(fd, depth);
                fprintf(fd, "</unary_expression_sbrac>\n");
                break;
-       case UNARY_NESTED:
-               print_tabs(fd, depth);
-               fprintf(fd, "<unary_expression_nested>\n");
-               ret = ctf_visitor_print_unary_expression(fd, depth + 1,
-                       node->u.unary_expression.u.nested_exp);
-               if (ret)
-                       return ret;
-               print_tabs(fd, depth);
-               fprintf(fd, "</unary_expression_nested>\n");
-               break;
 
        case UNARY_UNKNOWN:
        default:
This page took 0.025005 seconds and 4 git commands to generate.