c2v icon indicating copy to clipboard operation
c2v copied to clipboard

Optional else block should not produce error message

Open kbkpbot opened this issue 2 years ago • 1 comments
trafficstars

test2.c

int test(int a) {
        if (a > 1)
                return 0;
        return 1;
}

c2v produce extra error message "No more children" :

C to V translator 0.3.1
  translating /home/ddfd/v/test2.c ... No more children
Reformatted file: /home/ddfd/v/test2.v
 took    20 ms ; output .v file: /home/ddfd/v/test2.v
Translated   1 files in    20 ms.

kbkpbot avatar Mar 27 '23 06:03 kbkpbot

I think that was used as debug message while the initial development. Should be investigated and improved

ArtemkaKun avatar Mar 27 '23 08:03 ArtemkaKun