0

我试图有一个函数 return std::tuple<Qstring, int>,但我得到了这个编译器错误:

std::tuple<QString, int> foo()
{
    auto fst = getFst();
    auto snd = getSnd();
    return std::make_tuple(fst, snd);
}

`错误:从 'tuple<[...], typename __make_tuple_return::type>' 到 'tuple<[...], int>' 没有可行的转换

我究竟做错了什么?

4

1 回答 1

1

这段代码没有任何问题。它编译没有任何问题。

$ cat t.C
#include <QString>
#include <tuple>

std::tuple<QString, int> foo()
{
    QString fst = QString("fst");
    int snd = 2;
    return std::make_tuple(fst, snd);
}
$ g++ -std=c++11 -I/usr/include/QtCore -c -o t.o t.C
$ g++ --version
g++ (GCC) 5.3.1 20151207 (Red Hat 5.3.1-2)
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
于 2016-03-05T13:40:34.517 回答