When building my application in release mode, I get an internal error URW1135 at the end of one of my files. I searched the internet and found (here) that it could be about arrays of generic types like
MyClass <T> = class
FArray : array of T;
end;
So, I applied the proposed workaround (declaring a type TArrayType = array of T) throughout my codebase.
But unfortunately the error is still there. Any ideas what could be wrong?
Surprisingly, in debug mode everything works fine.
Thanks in advance.