Skip to content

IDL Problem Code 36 with alias reserved-pro-method

Want to disable me? Check out the configuration guide to learn more.

Warning

Potentially fatal error depending on if the internal routine is written in PRO code or in core IDL/ENVI

If you have a procedure method definition that conflicts with a core IDL definition, this gets reported.

idl
pro IDLffVideoRead::Cleanup
  ; ^^^^^^^^^^^^^^^^^^^^^^^ problem
end

To correct, rename your method as something else.

idl
pro IDLffVideoRead::Cleanup2
  ; ^^^^^^^^^^^^^^^^^^^^^^^ problem
  self.cleanup
end

Licensed under MIT.