You are not logged in.
Pages: 1
[dcc32 Warning] W1029 Duplicate constructor 'ESynException.CreateLastOSError' with identical parameters will be inacessible from C++
[dcc32 Warning] W1029 Duplicate constructor 'TSQLRecord.CreateAndFillPrepare' with identical parameters will be inacessible from C++
[dcc32 Warning] W1029 Duplicate constructor 'TSQLRecord.CreateAndFillPrepareJoined' with identical parameters will be inacessible from C++
[dcc32 Warning] W1029 Duplicate constructor 'TSQLRecord.CreateAndFillPrepareMany' with identical parameters will be inacessible from C++
[dcc32 Warning] W1029 Duplicate constructor 'TSynSQLTableDataSet.CreateOwnedTable' with identical parameters will be inacessible from C++
[dcc32 Warning] W1029 Duplicate constructor 'ESynException.CreateLastOSError' with identical parameters will be inacessible from C++
[dcc32 Warning] W1029 Duplicate constructor 'TSQLRecord.CreateAndFillPrepare' with identical parameters will be inacessible from C++
[dcc32 Warning] W1029 Duplicate constructor 'TSQLRecord.CreateAndFillPrepareJoined' with identical parameters will be inacessible from C++
[dcc32 Warning] W1029 Duplicate constructor 'TSQLRecord.CreateAndFillPrepareMany' with identical parameters will be inacessible from C++
[dcc32 Warning] W1029 Duplicate constructor 'TSynSQLTableDataSet.CreateOwnedTable' with identical parameters will be inacessible from C++
such Warnings were appeared , how to avoid them ?
Windows 7 64bit. Delphi XE10.2 Professional.
Offline
You may have searched for W1029 in the forum first...
And found https://synopse.info/forum/viewtopic.php?id=2627
Just include
{$I Synopse.inc}
inside the client .dpr file, or at least
{$warn DUPLICATE_CTOR_DTOR OFF} // avoid W1029 unneeded hints
Online
Pages: 1