summaryrefslogtreecommitdiffstats
path: root/src/libs
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2015-04-16 14:20:39 +0200
committerKai Koehne <kai.koehne@theqtcompany.com>2015-04-16 12:29:57 +0000
commit19d14ee1b65e86d45c5d7be06fe02967cdf37656 (patch)
tree37dd142746fbd1f00ed6fd11bfa1d583f378d0df /src/libs
parent6e9c785d3db5fc2010e07d8d3c0d19b3ffcf543b (diff)
Fix compilation with gcc 4.6
gcc 4.6 does not support alias templates yet. Change-Id: I65f2dd8d8bf8ffae37ca2ed9743d24539cd47fcf Reviewed-by: Karsten Heimrich <karsten.heimrich@theqtcompany.com>
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/installer/localsocket.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/localsocket.h b/src/libs/installer/localsocket.h
index bb0337d11..afe6b8cfa 100644
--- a/src/libs/installer/localsocket.h
+++ b/src/libs/installer/localsocket.h
@@ -67,7 +67,7 @@ private:
#else
-using LocalSocket = QLocalSocket;
+typedef QLocalSocket LocalSocket;
#endif