forked from qt-creator/qt-creator
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:
@@ -40,7 +40,7 @@ namespace TextEditor { class TextDocument; }
|
||||
namespace Python {
|
||||
namespace Internal {
|
||||
|
||||
class PythonLanguageServerState;
|
||||
struct PythonLanguageServerState;
|
||||
|
||||
class PyLSConfigureAssistant : public QObject
|
||||
{
|
||||
|
Reference in New Issue
Block a user