Given this source:
>type example.cxx
void foo(int**) {}
void bar(int a[]) { foo(&a); }
OrangeC 7.10.59 fails to compile it:
>occ -c example.cxx
occ (OrangeC) Version 7.10.59
...
Error(232) example.cxx(2): Could not find a match for 'foo(int[0])'
1 Errors
OrangeC 7.0.7 worked:
>occ -c example.cxx
occ (OrangeC) Version 7.0.7
...
Given this source:
OrangeC 7.10.59 fails to compile it:
OrangeC 7.0.7 worked: