vote up 2 vote down star

Do anybody know what this error means?

It comes and goes in one of my units. Adding a space or a lineshift will sometime solve it, sometime not...

I'm using Delphi 2007.

flag

57% accept rate
Please give some information about Delphi version – schnaader Apr 30 at 11:57

4 Answers

vote up 0 vote down

I got this error in one instance:

procedure TDMData.SetValue(AValue: Word);
var
  prevValue: Word;
  method: TMethod;
begin
  if FValue = AValue then
    Exit;
  prevValue := FValue;
  FValue := AValue;
  for method in FValueChangeEvent.Notifications do
    TDMDataValueChangeNotification(method)(Self, AValue, prevValue);
end; // <--- Fatal: F2084 Internal Error: T2575

Both the GetNotifications Notifications property and the GetEnumerator method of the record returned by GetNotifications had an inline directive. Only by removing the inline from GetEnumerator the problem went away.

Note: similar functions were not causing this internal error!

link|flag
vote up 0 vote down

All internal errors are things that shouldn't have happened, but did. Check QC and if it isn't there report it. If you can provide a way to reproduce it that will make it more likely they can fix it.

Usually for internal erros I do a full build or restart Delphi.

link|flag
vote up 4 vote down

Best thing to do is report this to CodeGear. It really helps if you can find a way to consistently cause the bug on purpose, so they can track it down more easily.

link|flag
vote up 6 vote down

Here is a Delphi internal error guide that will perhaps help you. Internal error often can be resolved by deleting DCU files, restarting the IDE or not using a tool that speeds up Delphi start (like DelphiSpeedUp).

But in most cases, this is some weird bug in the Delphi compiler and if you know to work around it and this won't be to costy, do this and be happy. I once had the console version dcc32 crashing (IDE compiled fine) when I increased a variable with Inc and using addition instead of Inc solved the problem...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.