1. 09 Aug, 2018 2 commits
    • Revert "Improvements to CMake buildsystem (#563)" · c90c08cc
      This reverts commit 3e33bb31.
      
      The original commit broke the build (#612) when yaml-cpp is used as a git submodule.
      Jesse Beder committed
    • Improvements to CMake buildsystem (#563) · 3e33bb31
      * Move enable_testing() into proper place
      
      * Added CMake's checks for C++11 standards
      
      Raised minimal version of CMake to 3.1, since on old systems there no
      decent compilers that supports c++11.
      
      Closes #377.
      
      * Externalize googletest project
      
      Externalize gtest to avoid installation, fixes #539.
      
      * Remove defined cmake_policies
      
      CMP0012 - OLD marked as deprecated for >=cmake-3.1 and will be removed
      CMP0015 - does not affect to build process
      CMP0042 - already NEW for >=cmake-3.1
      
      Fixes #505
      
      * Fix compiling in Windows MSVC
      Azamat H. Hackimov committed
  2. 03 Jul, 2018 1 commit
  3. 30 Jun, 2018 1 commit
  4. 14 May, 2018 1 commit
  5. 05 May, 2018 1 commit
  6. 11 Apr, 2018 1 commit
  7. 24 Mar, 2018 1 commit
  8. 06 Mar, 2018 1 commit
  9. 02 Feb, 2018 1 commit
  10. 28 Jan, 2018 4 commits
  11. 29 Nov, 2017 1 commit
  12. 14 Nov, 2017 2 commits
  13. 10 Nov, 2017 4 commits
  14. 08 Nov, 2017 1 commit
  15. 25 Aug, 2017 2 commits
  16. 25 Jul, 2017 1 commit
  17. 24 Jul, 2017 1 commit
  18. 03 Apr, 2017 1 commit
  19. 07 Mar, 2017 1 commit
  20. 02 Mar, 2017 1 commit
  21. 01 Feb, 2017 1 commit
  22. 05 Jan, 2017 1 commit
    • Fixed compiler warning -Wdeprecated with clang. (#452) · 86c69bb7
      * Fixed compiler warning -Wdeprecated with clang.
      
      Starting with C++11 implicit copy-constructors are deprecated when the class
      has a user defined destructor.
      
      * Fixes -Wdocumentation warning.
      
      yaml-cpp/parser.h:50:65: warning: parameter 'eventHandler}.' not found in the function
            declaration [-Wdocumentation]
         * Handles the next document by calling events on the {@param eventHandler}.
                                                                      ^~~~~~~~~~~~~~
      yaml-cpp/parser.h:50:65: note: did you mean 'eventHandler'?
         * Handles the next document by calling events on the {@param eventHandler}.
                                                                      ^~~~~~~~~~~~~~
                                                                      eventHandler
      Jens Breitbart committed
  23. 02 Jan, 2017 1 commit
    • Fix sequence sometimes not turning into a map (#450) · f8286100
      Previously, just referencing the next element in the sequence (and so constructing it, as an undefined element) would allow you to skip defining an element without turning the sequence into a map. E.g:
      
      node[0] = "foo"; // sequence of size 1
      node[1]; // sequence of size 1, with an undefined element at 1
      node[2] = "bar"; // FIX: should be map of size 2 (since there's no element at index 1)
      butataatawa committed
  24. 13 Dec, 2016 1 commit
  25. 06 Dec, 2016 1 commit
  26. 03 Dec, 2016 4 commits
  27. 02 Dec, 2016 2 commits