forked from qt-creator/qt-creator
CppQuickFixes: Add "auto" as local declaration incase cxx11
Add local declaration function add "auto " incase cxx11 features are enabled. Fixes: QTCREATORBUG-26004 Change-Id: I10da77e8baa52740b1c4df5a21d78ac5f0d1c5d6 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -1745,6 +1745,16 @@ void QuickfixTest::testGeneric_data()
|
||||
<< CppQuickFixFactoryPtr(new EscapeStringLiteral)
|
||||
<< _(R"(const char *str = @"\xc3\xa0""f23\xd0\xb1g\xd0\xb1""1";)")
|
||||
<< _(R"(const char *str = "àf23бgб1";)");
|
||||
QTest::newRow("AddLocalDeclaration_QTCREATORBUG-26004")
|
||||
<< CppQuickFixFactoryPtr(new AddLocalDeclaration)
|
||||
<< _("void func() {\n"
|
||||
" QStringList list;\n"
|
||||
" @it = list.cbegin();\n"
|
||||
"}\n")
|
||||
<< _("void func() {\n"
|
||||
" QStringList list;\n"
|
||||
" auto it = list.cbegin();\n"
|
||||
"}\n");
|
||||
}
|
||||
|
||||
void QuickfixTest::testGeneric()
|
||||
|
||||
Reference in New Issue
Block a user