From 5a07244a449592a143a628fde9b84846ee82e0ff Mon Sep 17 00:00:00 2001 From: Davide Beatrici Date: Sat, 23 Mar 2019 06:26:15 +0100 Subject: Don't include PCH headers directly According to Qt's documentation the PCH header doesn't need to be included. From https://doc.qt.io/qt-5/qmake-precompiledheaders.html: "To make your project use precompiled headers, you only need to define the PRECOMPILED_HEADER variable in your project file." "qmake will handle the rest, to ensure the creation and use of the precompiled header file. You do not need to include the precompiled header file in HEADERS, as qmake will do this if the configuration supports precompiled headers." --- src/Net.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/Net.cpp') diff --git a/src/Net.cpp b/src/Net.cpp index 53884f6c7..2794e4b0d 100644 --- a/src/Net.cpp +++ b/src/Net.cpp @@ -3,8 +3,6 @@ // that can be found in the LICENSE file at the root of the // Mumble source tree or at . -#include "murmur_pch.h" - #include "Net.h" #include "HostAddress.h" -- cgit v1.2.3