使用constexpr C-string作为编译器错误消息

时间:2017-04-25 19:05:32

标签: c++ compiler-errors

问题表明我想做的是

template<const char* Err>
struct broken
{
    template<typename... Args>
    constexpr broken(Args&&...)
    {
        //the sizeof... confuses the compiler as to only emit errors when instantiated
        //this does not work, static_assert only accepts string literals
        static_assert(sizeof...(Args) < 0, Err);
    }
};

我希望的是broken每当实例化时都会发出编译器错误消息Err。但是,static_assert只接受字符串文字作为其第二个参数。有没有办法根据constexpr字符串发出编译器错误?

1 个答案:

答案 0 :(得分:1)

你想要什么不可能以任何形式或形式工作,因为你可以合法地做

extern const char foo[];
template <const char* err> class broken {};
broken<foo> tisbroken;

foo甚至不需要在当前TU(或其他任何地方)中进行定义,以便进行编译。

err foofoo的ODR使用会导致(?<!]){[^}]*} 未定义时出现链接器错误,但这太迟了。

所以不,你不能使用传递给模板的字符串来打印编译器消息,因为没有字符串