[dcc32 Warning] DosCommand.pas(1): W1025 Unsupported language feature: 'class constructor'
SSHAnakSolo opened this issue · 4 comments
SSHAnakSolo commented
when i open the : DOSCommandDR on Delphi XE7 and compile it,, it give me Warning
[dcc32 Warning] DosCommand.pas(1): W1025 Unsupported language feature: 'class constructor'
so,, how can i install the DosCommand Component on delphi xe7..??
thx
romankassebaum commented
This is only a warning since the C++ linker doesn't support smart class constructors.
This means that under Delphi the class constructor is only called if the class is used. Under C++ the constructor is always called.
So, simply ignore the warning.
SSHAnakSolo commented
On Apr 25, 2017 10:28 PM, "Roman Kassebaum" <notifications@github.com> wrote:
This is only a warning since the C++ linker doesn't support smart class
constructors.
This means that under Delphi the class constructor is only called if the
class is used. Under C++ the constructor is always called.
So, simply ignore the warning.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AatiXDft8y3jDX2Q1gfLxfQnV6lJy0uiks5rzhEPgaJpZM4NHiAw>
.
So how can i fix this warning so i can iinstall the doscommand on delphi
xe7..??
I cant ignore this because when compiling got that error so the component
is not installed
romankassebaum commented
Did you enable warnings as errors?
'Project -> Options - > Delphi Compiler -> Hints and Warnings' and change the value of Output Warnings from 'as errors' to 'False'.
SSHAnakSolo commented
On Apr 26, 2017 9:53 PM, "Roman Kassebaum" <notifications@github.com> wrote:
Did you enable warnings as errors?
'Project -> Options - > Delphi Compiler -> Hints and Warnings' and change
the value of Output Warnings from 'as errors' to 'False'.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AatiXKThLrOsKVCB8jZVOYWpyLFcg5Fjks5rz1pMgaJpZM4NHiAw>
.
Thanks fix and clear... finished install...