fix CI build (#442)
This commit is contained in:
parent
7593f3fe64
commit
56488c9dbc
|
@ -21,7 +21,7 @@
|
|||
#include <QThread>
|
||||
#include <QSemaphore>
|
||||
|
||||
class OJProblem;
|
||||
struct OJProblem;
|
||||
using POJProblem = std::shared_ptr<OJProblem>;
|
||||
|
||||
class QTcpSocket;
|
||||
|
|
|
@ -88,6 +88,8 @@ target("RedPandaIDE")
|
|||
-- parser
|
||||
"parser/cppparser",
|
||||
"parser/statementmodel",
|
||||
-- problems
|
||||
"problems/competitivecompenionhandler",
|
||||
-- settings dialog
|
||||
"settingsdialog/settingswidget",
|
||||
-- widgets
|
||||
|
|
|
@ -138,7 +138,7 @@ class TokenAttribute;
|
|||
using PTokenAttribute = std::shared_ptr<TokenAttribute>;
|
||||
class Document;
|
||||
using PDocument = std::shared_ptr<Document>;
|
||||
class SyntaxState;
|
||||
struct SyntaxState;
|
||||
class Syntaxer;
|
||||
using PSyntaxer = std::shared_ptr<Syntaxer>;
|
||||
class UndoList;
|
||||
|
|
Loading…
Reference in New Issue