HomeDelphiDelphi Error – H2444 Inline function ‘%s’ has not been expanded because accessing member ‘%s’ is inaccessible

Delphi Error – H2444 Inline function ‘%s’ has not been expanded because accessing member ‘%s’ is inaccessible

Delphi Compiler Error

H2444 Inline function ‘%s’ has not been expanded because accessing member ‘%s’ is inaccessible

Reason for the Error & Solution

An inline function cannot be expanded when the inline function body refers to a restricted member that is not accessible where the function is called.

For example, if an inline function refers to a strict private field and this function is called from outside the class (e.g. from a global procedure), the field is not accessible at the call site and the inline function is not expanded.

Note: You can disable these hints by turning off Inlining in Project > Options > Compiling .

See Also

Share:

Leave a Reply

You May Also Like

Delphi Compiler Error X2421 Imported identifier ‘%s’ conflicts with ‘%s’ in ‘%s’ Reason for the Error & Solution This occurs...
Delphi Compiler Error X2367 Case of property accessor method %s.%s should be %s.%s Reason for the Error & Solution No...
Delphi Compiler Error X2269 Overriding virtual method ‘%s.%s’ has lower visibility (%s) than base class ‘%s’ (%s) Reason for the...