http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51080

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |INVALID

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-11-10 
18:31:04 UTC ---
I agree with Daniel's analysis, but it's easily worked around for this case

class A
{
  static const int size = 16;

  static constexpr int static_size() { return size; }
  int data[size];
};

Reply via email to