我下载了一些代码并在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问题?...我想知道如何修复它?