IDL Problem Code 44
with alias unexpected-comma
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 code represents when we detect commas that are out of place.
Here's a reproduce case to create this problem and fix it:
idl
pro myPro
compile_opt idl2
a = b[,]
; ^ unexpected comma
end
idl
pro myPro
compile_opt idl2
a = b[1]
; ^ removed
end