错误C2664 - 无法将参数1从'initializer-list'转换为'const QList <qcommandlineoption>&amp;'

时间:2015-12-29 06:51:12

标签: c++ qt c++11 visual-studio-2013

我下载了一些代码并在VS2013 + QT5.4中运行,有这样的代码:

parser.addOptions({
        { "nogui", QString("Using command line arguments, do not show GUI.") },
        { { "p", "path" }, QString("Path for job files or shape files."), QString("path") },
    });

我收到了一个错误:

error C2664 - cannot convert parameter 1 from 'initializer-list' to 'const QList<QCommandLineOption> &'

似乎关于C ++ 11的VS问题?...我想知道如何修复它?

0 个答案:

没有答案