Skip to content
Snippets Groups Projects
  1. Jun 22, 2018
  2. Apr 23, 2017
  3. Apr 21, 2017
    • AbigailBuccaneer's avatar
      Use unique_ptr instead of auto_ptr when possible · 347e1ae4
      AbigailBuccaneer authored
      Previously we only used it on GCC 6 to avoid deprecated declaration
      warnings. Now we are proactive and use it whenever compiling as C++11
      (or MSVC2010+).
      
      It also moves the logic for deciding between unique_ptr and auto_ptr
      into a single location in config.h.
      
      This fixes some use cases that were previously broken, including:
      * CXX=clang++ -std=c++11 -Werror=deprecated-declarations
      * CXX=g++-6 -std=c++03 -Werror=deprecated-declarations
      347e1ae4
    • AbigailBuccaneer's avatar
      Use std::unique_ptr instead of std::scoped_ptr · 1335f70b
      AbigailBuccaneer authored
      scoped_ptr has never been a part of the C++ standard - perhaps it's been
      confused with boost::scoped_ptr. Anyhow, std::unique_ptr is the
      replacement for the now-deprecated std::auto_ptr.
      1335f70b
  4. Jun 27, 2016
  5. Apr 22, 2016
  6. Apr 21, 2016
  7. Apr 20, 2016
  8. Mar 18, 2016
  9. Mar 16, 2016
  10. Feb 06, 2016
  11. Sep 05, 2015
  12. Aug 14, 2015
    • Robert Dailey's avatar
      Clean up cmake END* (again) · 8bdb07dd
      Robert Dailey authored
      (I missed a couple. ~cd)
      8bdb07dd
    • Robert Dailey's avatar
      Clean up cmake END* · 22dade5c
      Robert Dailey authored
      * Clean up closing statements for if conditions, functions, macros,
        and other entities. Newer versions of CMake do not require you to
        redundantly respecify the parameters to the opening arguments.
      22dade5c
  13. Aug 10, 2015
  14. Aug 09, 2015
  15. Jul 23, 2015
  16. Jul 17, 2015
  17. Jul 14, 2015
Loading