Python: Fix MSVCs struct vs. class (forward) declaration warning

src\plugins\python\pythonutils.cpp(67): warning C4099:
'Python::Internal::PythonLanguageServerState': type name first seen
using 'class' now seen using 'struct'
src\plugins\python\pythonutils.cpp(66): note: see declaration of
'Python::Internal::PythonLanguageServerState'

Change-Id: Ibec8b0b990ee88fcd274961db4c8d8d0ee29533a
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Alessandro Portale
2020-02-20 15:18:38 +01:00
parent 1f4028d834
commit bad2d31747

View File

@@ -40,7 +40,7 @@ namespace TextEditor { class TextDocument; }
namespace Python {
namespace Internal {
class PythonLanguageServerState;
struct PythonLanguageServerState;
class PyLSConfigureAssistant : public QObject
{