0
如何將static_assert如果模板class A
屬於某個模板class NOTALLOWED
?靜態斷言模板參數是否屬於某個模板類
template<typename T>
struct NOTALLOWED{
};
template<typename T>
struct A{
// static_assert if T == NOTALLOWED<...> ??
}
// USING A< NOTALLOWED<int> > is not allowed for example
模板類A應該保持原樣。 我想阻止A
以結構NOTALLOWED
作爲模板參數
非常感謝!