1. 05 May, 2018 1 commit
  2. 11 Apr, 2018 1 commit
  3. 24 Mar, 2018 1 commit
  4. 06 Mar, 2018 1 commit
  5. 02 Feb, 2018 1 commit
  6. 28 Jan, 2018 4 commits
  7. 29 Nov, 2017 1 commit
  8. 14 Nov, 2017 2 commits
  9. 10 Nov, 2017 4 commits
  10. 08 Nov, 2017 1 commit
  11. 25 Aug, 2017 2 commits
  12. 25 Jul, 2017 1 commit
  13. 24 Jul, 2017 1 commit
  14. 03 Apr, 2017 1 commit
  15. 07 Mar, 2017 1 commit
  16. 02 Mar, 2017 1 commit
  17. 01 Feb, 2017 1 commit
  18. 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
  19. 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
  20. 13 Dec, 2016 1 commit
  21. 06 Dec, 2016 1 commit
  22. 03 Dec, 2016 4 commits
  23. 02 Dec, 2016 2 commits
  24. 22 Nov, 2016 1 commit
  25. 11 Nov, 2016 3 commits
  26. 12 Oct, 2016 1 commit