diff options
author | Kai Koehne <kai.koehne@digia.com> | 2014-03-13 10:12:50 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2014-03-13 16:17:15 (GMT) |
commit | 912afe4f2aaef179e55fb31f4d656a693e4c367c (patch) | |
tree | 507aa6380ba2adf27316910b648f610049014e75 | |
parent | b072af9b306010eb3b0e1702be92cfa25eb030bf (diff) | |
download | Qt-912afe4f2aaef179e55fb31f4d656a693e4c367c.zip Qt-912afe4f2aaef179e55fb31f4d656a693e4c367c.tar.gz Qt-912afe4f2aaef179e55fb31f4d656a693e4c367c.tar.bz2 |
Fix compilation failure in configure.exe
Fix regression introduced in (incomplete) commit 95f256d21dd.
Change-Id: I319f214a38134b5b97164ec61b2ae482e6542b86
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
-rw-r--r-- | tools/configure/environment.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure/environment.h b/tools/configure/environment.h index 1b99ce3..e918dc8 100644 --- a/tools/configure/environment.h +++ b/tools/configure/environment.h @@ -66,7 +66,7 @@ public: static Compiler detectCompiler(); static QString detectQMakeSpec(); static bool detectExecutable(const QString &executable); - static int detectGPlusPlusVersion(const QString &executable, bool *is64bit); + static int detectGPlusPlusVersion(const QString &executable); static QString readProcessStandardOutput(const QString &commandLine); static int execute(QStringList arguments, const QStringList &additionalEnv, const QStringList &removeEnv); |