Quote Originally Posted by Valheru View Post
Is that valid syntax?
No, boost::array is meant as a replacement for C-style arrays and it has a constant size that must be known at compile time:
Qt Code:
  1. boost::array< float, 100 > *x;
To copy to clipboard, switch view to plain text mode