forked from qt-creator/qt-creator
Squish: Don't expect parsers to understand invalid C++
Change-Id: Icfe466540b7193c6f55014a68f1399debb0a17c3 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -5,16 +5,16 @@
|
||||
"" "QCoreApplication qa;" "qa" "." "qa."
|
||||
"" "QCoreApplication *p;" "p" "." "p->"
|
||||
"" "QCoreApplication &ref = a;" "ref" "." "ref."
|
||||
"<QPointer>" "QPointer p;" "p" "." "p."
|
||||
"<QPointer>" "QPointer *poi;" "poi" "." "poi->"
|
||||
"<QPointer>" "QPointer &poi;" "poi" "." "poi."
|
||||
"<QPointer>" "QPointer poi[5];" "poi[2]" "." "poi[2]."
|
||||
"<QPointer>" "QPointer *poi[5];" "poi[2]" "." "poi[2]->"
|
||||
"<memory>" "std::auto_ptr sap;" "sap" "." "sap."
|
||||
"<memory>" "std::auto_ptr *sap;" "sap" "." "sap->"
|
||||
"<memory>" "std::auto_ptr &sap;" "sap" "." "sap."
|
||||
"<memory>" "std::auto_ptr sap[10];" "sap[2]" "." "sap[2]."
|
||||
"<memory>" "std::auto_ptr *sap[10];" "sap[2]" "." "sap[2]->"
|
||||
"<QPointer>" "QPointer<QCoreApplication> p;" "p" "." "p."
|
||||
"<QPointer>" "QPointer<QCoreApplication> *poi;" "poi" "." "poi->"
|
||||
"<QPointer>" "QPointer<QCoreApplication> &poi;" "poi" "." "poi."
|
||||
"<QPointer>" "QPointer<QCoreApplication> poi[5];" "poi[2]" "." "poi[2]."
|
||||
"<QPointer>" "QPointer<QCoreApplication> *poi[5];" "poi[2]" "." "poi[2]->"
|
||||
"<memory>" "std::auto_ptr<QCoreApplication> sap;" "sap" "." "sap."
|
||||
"<memory>" "std::auto_ptr<QCoreApplication> *sap;" "sap" "." "sap->"
|
||||
"<memory>" "std::auto_ptr<QCoreApplication> &sap;" "sap" "." "sap."
|
||||
"<memory>" "std::auto_ptr<QCoreApplication> sap[10];" "sap[2]" "." "sap[2]."
|
||||
"<memory>" "std::auto_ptr<QCoreApplication> *sap[10];" "sap[2]" "." "sap[2]->"
|
||||
"<QVector>" "QVector<QCoreApplication> vec;" "vec" "." "vec."
|
||||
"<QVector>" "QVector<QCoreApplication *> vec;" "vec" "." "vec."
|
||||
"<QVector>" "QVector<QCoreApplication> *vec;" "vec" "." "vec->"
|
||||
|
||||
|
Reference in New Issue
Block a user