1. 15 Jun, 2020 11 commits
  2. 31 May, 2020 1 commit
  3. 25 May, 2020 1 commit
  4. 24 May, 2020 1 commit
  5. 23 May, 2020 1 commit
  6. 19 May, 2020 1 commit
  7. 12 May, 2020 1 commit
  8. 07 May, 2020 1 commit
  9. 29 Apr, 2020 3 commits
  10. 26 Apr, 2020 1 commit
  11. 24 Apr, 2020 2 commits
  12. 23 Apr, 2020 1 commit
    • Include wiki content into a doc folder (#850) · 99222fc9
      * Copied Tutorial from Google Code wiki.
      
      * Initial Home page
      
      * Copied How To Parse A Document from Google Code wiki
      
      * Updated How To Parse A Document (markdown)
      
      * Updated How To Parse A Document (markdown)
      
      * Updated How To Parse A Document (Old API) (markdown)
      
      * Copied How To Emit YAML from Google Code wiki
      
      * Copied Breaking Changes from Google Code wiki
      
      * Copied Strings from Google Code wiki
      
      * Updated Strings (markdown)
      
      * Updated Home (markdown)
      
      * Fix typo.
      
      * Updated Breaking Changes (markdown)
      
      * Updated How To Parse A Document (Old API) (markdown)
      
      * Updated Breaking Changes (markdown)
      
      * Move wiki content to docs/
      
      * Improve markdown and add colored code syntax
      
      Co-authored-by: Jesse Beder <jbeder+github@gmail.com>
      Martin Delille committed
  13. 09 Apr, 2020 2 commits
  14. 08 Apr, 2020 2 commits
  15. 07 Apr, 2020 2 commits
  16. 29 Mar, 2020 2 commits
  17. 11 Mar, 2020 1 commit
  18. 01 Mar, 2020 1 commit
  19. 15 Feb, 2020 1 commit
  20. 14 Feb, 2020 1 commit
  21. 07 Feb, 2020 1 commit
  22. 04 Feb, 2020 2 commits
    • Make SettingChange and StreamCharSourcemove constructors and assignment operators noexcept (#808) · 9ab22ef4
      The explicitly defaulted or implemented move constructors and assignment
      operators are made "noexcept".
      
      Bugfix:
      * src/stream.cpp Stream::Stream() char_traits::int_type intro[4] is
        now aggregate-initialized (to zero) to avoid UB.
      
      Minor changes:
      * Using std::isinf() and std::signbit() instead of comparing for
        equality with infinity.
      * src/streamcharsource.h: Added #include "stream.h".
      * src/stream.h: Forward declaring "class StreamCharSource".
      * Some implicit casting changed into static_cast's.
      
      Signed-off-by: Ted Lyngmo <ted@lyncon.se>
      Ted Lyngmo committed
    • Move the YAML_CPP_NOEXCEPT macro to include/yaml-cpp/noexcept.h (#813) · 1928bca4
      This is in preparation for other patches that will make use of the
      macro. The patch also removes #undef:ing the macro after its been
      used to not make the header inclusion order critical. Otherwise,
      the new header would always have to be the last of the yaml-cpp
      headers to be included.
      Ted Lyngmo committed