Cesium icon indicating copy to clipboard operation
Cesium copied to clipboard

Non-constant expressions as function names

Open ForNeVeR opened this issue 2 years ago • 0 comments

Eventually, something like this should be supported:

int foo(void) { return 0; }
int bar(void) { return 1; }

int res = (true ? foo : bar)();

Look for the number 229 in the code to find clues to implement this feature.

ForNeVeR avatar Aug 14 '22 18:08 ForNeVeR