mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[SPEC2DEF]
- Don't warn about symbols that should be private on MSVC builds. Link already does this. CORE-8445 svn path=/trunk/; revision=66201
This commit is contained in:
@@ -1043,7 +1043,7 @@ ParseFile(char* pcStart, FILE *fileDest, PFNOUTLINE OutputLine)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (!gbNotPrivateNoWarn && gbImportLib && !(exp.uFlags & FL_PRIVATE))
|
||||
if (!gbMSComp && !gbNotPrivateNoWarn && gbImportLib && !(exp.uFlags & FL_PRIVATE))
|
||||
{
|
||||
for (i = 0; i < ARRAYSIZE(astrShouldBePrivate); i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user