Cesium icon indicating copy to clipboard operation
Cesium copied to clipboard

Implement indirection operator (`*`) for structs and function pointers

Open gsomix opened this issue 3 years ago • 0 comments

It should be possible to use indirection operator (*):

  • with pointers to structs
foo x;
foo *y = x;
foo z = *y;
  • with function pointers. Please note, that indirection on function pointer is not an lvalue.

gsomix avatar Aug 21 '22 12:08 gsomix