microsoft/ifc-spec

Missing constexpr flag on variable declaration

Opened this issue · 0 comments

MSVC produced IFCs do not mark the Constexpr object traits flag when dealing with cases like the following:

struct X {
  static const X m;
};
constexpr X X::m { 13 };