dpp icon indicating copy to clipboard operation
dpp copied to clipboard

template argument value specialisation algorithm fails for expressions

Open atilaneves opened this issue 5 years ago • 0 comments

                template <int> struct Struct{};
                template<>
                struct Struct<1 + 1> {
                    static constexpr auto value = 42;
                };

atilaneves avatar Nov 14 '18 11:11 atilaneves