以下代码使用gcc和clang(以及许多其他C ++ 11编译器)进行编译
#include <stdint.h>
typedef int datatype;
template <typename T>
struct to_datatype {};
template <>
struct to_datatype<int16_t> {
static constexpr datatype value = 1;
};
template <typename T>
class data {
public:
data(datatype dt = to_datatype<T>::value) {}
};
int main() {
data<char> d{to_datatype<int16_t>::value};
}
使用(几乎)最新的MSVC编译时
> cl .\test.cpp /std:c++latest /permissive-
Microsoft (R) C/C++ Optimizing Compiler Version 19.24.28314 for x64
Copyright (C) Microsoft Corporation. All rights reserved.
test.cpp
.\test.cpp(16): error C2039: 'value': is not a member of 'to_datatype<T>'
with
[
T=char
]
.\test.cpp(16): note: see declaration of 'to_datatype<T>'
with
[
T=char
]
.\test.cpp(20): note: see reference to class template instantiation 'data<char>' being compiled
这是MSVC的错误吗?如果是,那么C ++标准中的哪个术语最能描述它?
如果您将部分代码替换为
template <typename T>
class data {
public:
data(datatype dt) {}
data() : data(to_datatype<T>::value) {}
};
无论如何它都能顺利编译。
看起来实际上可能是一个错误。这个问题是最近开放的,还有其他一些报告。
—
alteredinstance
@alteredinstance我看不到这个问题与这个问题有什么关系,或者您以前的链接是怎么回事。您是否只是复制了Google为该错误消息提供的第一个链接?该错误消息非常笼统,可能出现在许多不同的(合法)情况下。
—
胡桃木
该问题中提到的代码的 @walnut 第231行具有已终止的指向具有聚合初始化的MSVC问题的链接,这与OP的代码正在做的事情相同。碰巧的是,boost库最近
—
alteredinstance
value
在使用MSVC的聚合类型时也遇到了类似的问题
std::is_same_v<char, int8_t>
。我的猜测是int8_t是否与char相同,是由实现定义的,但是需要检查文档。