TBB:不能使用数组类型?
TBB: Can't use an array type?
我有一些使用 TBB 的代码:
tbb::concurrent_vector<float[3]> vnors2;
vnors2.resize(NUM_VERTS);
tbb::concurrent_vector<float[3]> lnors_weighted2;
lnors_weighted2.resize(NUM_LOOPS);
我在编译时遇到错误(Windows,Visual Studio 2019):
non-scalar type 'T' cannot be used in a pseudo-destructor expression
根据 this 看来我需要重写 class,但这不是我的。有什么办法可以解决这个问题吗?我可以重写代码以使用结构,但我更愿意使用数组。
是的,@Yksisarvinen 你是对的。这个问题确实与 TBB 无关。 @easythrees 您可以在 https://en.cppreference.com/w/cpp/container/array
中找到有关数组语法的更多信息
我有一些使用 TBB 的代码:
tbb::concurrent_vector<float[3]> vnors2;
vnors2.resize(NUM_VERTS);
tbb::concurrent_vector<float[3]> lnors_weighted2;
lnors_weighted2.resize(NUM_LOOPS);
我在编译时遇到错误(Windows,Visual Studio 2019):
non-scalar type 'T' cannot be used in a pseudo-destructor expression
根据 this 看来我需要重写 class,但这不是我的。有什么办法可以解决这个问题吗?我可以重写代码以使用结构,但我更愿意使用数组。
是的,@Yksisarvinen 你是对的。这个问题确实与 TBB 无关。 @easythrees 您可以在 https://en.cppreference.com/w/cpp/container/array
中找到有关数组语法的更多信息