mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 23:45:35 +08:00
Fixes some CLANG warnings (QtC IDE checks, nevertheless does not harm to fix them)
This commit is contained in:
committed by
Mat Sutcliffe
parent
15ced5a77f
commit
86c8568bf2
@@ -17,7 +17,7 @@
|
||||
|
||||
#if defined(Q_CC_MSVC)
|
||||
#include <intrin.h>
|
||||
#include <windows.h>
|
||||
#include <Windows.h>
|
||||
#endif
|
||||
|
||||
#if defined(Q_CC_CLANG)
|
||||
@@ -35,12 +35,12 @@ namespace BlackMisc
|
||||
// cppcheck-suppress unusedFunction
|
||||
void failedVerify(const char *condition, const char *filename, int line, const char *context, const char *message, bool audit)
|
||||
{
|
||||
Q_UNUSED(condition);
|
||||
Q_UNUSED(filename);
|
||||
Q_UNUSED(line);
|
||||
Q_UNUSED(context);
|
||||
Q_UNUSED(message);
|
||||
Q_UNUSED(audit);
|
||||
Q_UNUSED(condition)
|
||||
Q_UNUSED(filename)
|
||||
Q_UNUSED(line)
|
||||
Q_UNUSED(context)
|
||||
Q_UNUSED(message)
|
||||
Q_UNUSED(audit)
|
||||
|
||||
#if defined(QT_DEBUG)
|
||||
# if defined(Q_CC_MSVC)
|
||||
|
||||
Reference in New Issue
Block a user