Skip to content
Snippets Groups Projects
  1. Jul 01, 2016
  2. Jun 30, 2016
  3. Jun 29, 2016
  4. Jun 28, 2016
  5. Jun 27, 2016
  6. Jun 26, 2016
  7. Jun 24, 2016
  8. Jun 23, 2016
  9. Jun 22, 2016
    • Andrew Maclean's avatar
      std::auto_ptr is marked deprecated in C++11/14 and will be removed in C++17. · 831def7a
      Andrew Maclean authored
      This fix selects std::unique_ptr when the compiler is identified as being C++11
       compliant.
      
      To ensure the compiler is C++11 compliant or better, __cplusplus, _MSC_VER and
      _CPPLIB_VER are tested.
      _MSC_VER is used since Microsoft compilers still use 19711L
       as the __cplusplus value.
      _CPPLIB_VER is used to test for better Dinkumware support.
      
      The variable VTK_HAS_STD_UNIQUE_PTR is defined if std::unique_ptr is available.
      831def7a
  10. Jun 21, 2016
Loading