diff options
| author | Simon Hausmann <[email protected]> | 2019-10-15 10:42:30 +0200 |
|---|---|---|
| committer | Simon Hausmann <[email protected]> | 2019-10-15 10:46:06 +0000 |
| commit | 0eb4dcad8983e611e064da24e39d341c11e112c5 (patch) | |
| tree | cfb39fa9266187ffe329945dedbf5fbba14a16fc /qmake/generators/makefiledeps.cpp | |
| parent | 355a00270437d76fb98c14ac672ee662be0c06f5 (diff) | |
Fix developer build with -Werror
The group parameter is only used when cross-compiling, mark it as unused
otherwise. This is noticeable in the cmake branch because there we build
qmake with cmake and apply the same warning flags, as opposed to the
bootstrapped qmake build when using ... qmake.
The cache file parameter in qmake is unused and the
mustEnsureWritability is only used on Windows.
Change-Id: I08655d5150f5a967c2340ee7678bad3a4d69914f
Reviewed-by: MÃ¥rten Nordheim <[email protected]>
Diffstat (limited to 'qmake/generators/makefiledeps.cpp')
| -rw-r--r-- | qmake/generators/makefiledeps.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/makefiledeps.cpp b/qmake/generators/makefiledeps.cpp index 7c4be64aa86..0ff64c4fbc2 100644 --- a/qmake/generators/makefiledeps.cpp +++ b/qmake/generators/makefiledeps.cpp @@ -246,7 +246,7 @@ bool QMakeSourceFileInfo::mocable(const QString &file) return false; } -QMakeSourceFileInfo::QMakeSourceFileInfo(const QString &cf) +QMakeSourceFileInfo::QMakeSourceFileInfo() { //dep_mode dep_mode = Recursive; |
