参数包混乱

时间:2013-05-28 07:19:23

标签: c++ c++11 g++ tuples variadic-templates

在撰写类似C++11 std::tuple的类并尝试使用g++-4.7编译时,我遇到了一个非常奇怪的情况。我基本上需要的是包装类型的元组。我写了这样的话:

#include <tuple> 

template <class T> 
struct Wrapper { T x; }; 

template <class... Types> 
using Tuple = std::tuple<Wrapper<Types>...>; 

template <class... Types> 
struct X 
{ 
    using MyTuple = Tuple<Types...>; 
}; 

int main( int argc, char** argv ) 
{ 
    // Tuple<int,int> t;  // (1)
    using Y = X<int,int>;
    Y y;                  // (2)
    return 0; 
}

我做了以下观察:

  1. 代码无法编译:
  2. 如果我添加(1),它会编译。
  3. 如果我删除了(1)(2),它也会进行编译。
  4. 1的错误消息:

    test.cpp: In instantiation of ‘struct X<int, int>’:
    test.cpp:22:4:   required from here
    test.cpp:10:44: error: wrong number of template arguments (2, should be 1)
    test.cpp:4:8: error: provided for ‘template<class T> struct Wrapper’
    

    问题:在我看来,上面的代码是正确的,但这是我第一次真正使用参数包。 g++-4.7是否有任何理由不喜欢我的代码,除非它是一个实验性的实现?

1 个答案:

答案 0 :(得分:3)

这很可能是在g ++ 4.8中修复的bug in g++ 4.7。 Ideone(使用g ++ 4.7.2,我无法链接到它而不复制你的代码示例,argh)给出了你提到的错误,而Coliru(使用g ++ 4.8)编译时没有错误。