Merge branch 'master' into elfring-2679e
This commit is contained in:
commit
e9f49cd30b
|
@ -1910,13 +1910,7 @@ void Preprocessor::handleIncludes(std::string &code, const std::string &filePath
|
|||
}
|
||||
else if (!fileOpened)
|
||||
{
|
||||
// TODO: Fix the handling of system includes and then
|
||||
// remove the "headerType == UserHeader"
|
||||
#ifdef NDEBUG
|
||||
if (headerType == UserHeader && _errorLogger && _settings && _settings->isEnabled("missingInclude"))
|
||||
#else
|
||||
if (_errorLogger && _settings && _settings->isEnabled("missingInclude"))
|
||||
#endif
|
||||
if (_errorLogger && _settings && ((headerType == UserHeader) && _settings->isEnabled("missingInclude") || _settings->debugwarnings))
|
||||
{
|
||||
std::string f = filePath;
|
||||
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
<Component Id='GuiTranslations' Guid='$(var.guiTranslationsGUID)'>
|
||||
<File Id='cppcheck_de.qm' Name='cppcheck_de.qm' Source='$(var.TranslationsDir)\cppcheck_de.qm' />
|
||||
<File Id='cppcheck_en.qm' Name='cppcheck_en.qm' Source='$(var.TranslationsDir)\cppcheck_en.qm' />
|
||||
<File Id='cppcheck_es.qm' Name='cppcheck_es.qm' Source='$(var.TranslationsDir)\cppcheck_es.qm' />
|
||||
<File Id='cppcheck_fi.qm' Name='cppcheck_fi.qm' Source='$(var.TranslationsDir)\cppcheck_fi.qm' />
|
||||
<File Id='cppcheck_fr.qm' Name='cppcheck_fr.qm' Source='$(var.TranslationsDir)\cppcheck_fr.qm' />
|
||||
<File Id='cppcheck_ja.qm' Name='cppcheck_ja.qm' Source='$(var.TranslationsDir)\cppcheck_ja.qm' />
|
||||
|
|
Loading…
Reference in New Issue