IDL Problem Code 93
with alias ptr-nothing-to-de-ref
Want to disable me? Check out the configuration guide to learn more.
Execution Error
This is a fatal error that prevents IDL from compiling or running code
This problem finds floating asterisks in your code that are being used in a way that indicates they are for de-referencing pointers.
Here is a reproduce case:
idl
a = *
b = (*)
To fix, correct your statement or re-write your code:
idl
a = *myPtr
b = (*myPtr)