Date
2010-10-21.18:28:33
Message id
345

Content

Proposed resolution:

Add to the integral_constant struct definition in [meta.help]:

template <class T, T v>
struct integral_constant {
  static constexpr T value = v;
  typedef T value_type;
  typedef integral_constant<T,v> type;
  constexpr operator value_type() { return value; }
};