mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +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:
parent
b8808ef996
commit
683c14c278
1 changed files with 1 additions and 1 deletions
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue