Fix MSVC compiler warnings

D:\dev\qt-creator\src\plugins\projectexplorer\toolchain.cpp:198:
warning: C4138: '*/' found outside of comment
D:\dev\qt-creator\src\plugins\pythoneditor\pythoneditorplugin.cpp:217:
warning: C4189: 'pCore' : local variable is initialized but not
referenced

Change-Id: I5e1447e98ac8cbff2c2b8981ddba7e08e7506e24
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
Orgad Shaneh
2013-03-25 14:55:32 +02:00
committed by Orgad Shaneh
parent 49554406cc
commit 0043305369
3 changed files with 3 additions and 5 deletions

View File

@@ -195,7 +195,7 @@ bool ToolChain::fromMap(const QVariantMap &data)
\brief Used by the toolchainkitinformation to validate the kit.
*/
QList<Task> ToolChain::validateKit(const Kit */*k*/) const
QList<Task> ToolChain::validateKit(const Kit *) const
{
return QList<Task>();
}