1. 31 Aug, 2017 3 commits
  2. 29 Aug, 2017 4 commits
  3. 28 Aug, 2017 13 commits
  4. 27 Aug, 2017 10 commits
  5. 26 Aug, 2017 9 commits
  6. 25 Aug, 2017 1 commit
    • Deniz Evrenci's avatar
      C++11 features (#778) · 6fbe3c60
      Deniz Evrenci authored
      * Make noncopyable constructor and destructor default
      
      C++11 provides the functionality.
      Defining empty functions cause all classes derived from noncopyable
      to be non-trivially constructible and non-trivially destructible.
      
      For example, matrix with compile-time layout by definition does not
      require an explicit destructor and should be trivially destructible
      ; however, deriving from noncopyable makes it non-trivially
      destrutible. This also affects vector<T, 2> and vector<T, 3>.
      
      * Delete array2d copy constructor and assignment operators
      6fbe3c60