1. 31 Oct, 2019 1 commit
  2. 23 Oct, 2019 1 commit
    • Fix -Wmisleading-indentation warning when using gcc >= 6. (#779) · 14c87258
      This happens whenever in a macro you use some "if" block, and don't use curly braces {},
      as the macro is expanded on a single line, not on several lines. So just add the missing
      curly braces to please gcc.
      
      In file included from /remote/users/mlamesch/CloneFromPlatinum/yamlcpp/osp/Yamlcpp/18-0-0-5/include/yaml-cpp/yaml.h:18,
                       from src/TestYaml.cpp:2:
      /remote/users/mlamesch/CloneFromPlatinum/yamlcpp/osp/Yamlcpp/18-0-0-5/include/yaml-cpp/node/convert.h: In static member function static bool YAML::convert<int>::decode(const YAML::Node&, int&):
      /remote/users/mlamesch/CloneFromPlatinum/yamlcpp/osp/Yamlcpp/18-0-0-5/include/yaml-cpp/node/convert.h:139:1: error: this if clause does not guard... [-Werror=misleading-indentation]
       YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(int);
       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      Romain Geissler @ Amadeus committed
  3. 16 Oct, 2019 1 commit
  4. 13 Oct, 2019 1 commit
  5. 11 Oct, 2019 1 commit
  6. 05 Oct, 2019 1 commit
  7. 04 Oct, 2019 1 commit
  8. 02 Oct, 2019 6 commits
  9. 27 Sep, 2019 4 commits
  10. 25 Sep, 2019 1 commit
  11. 15 Sep, 2019 3 commits
  12. 10 Sep, 2019 3 commits
  13. 04 Aug, 2019 1 commit
  14. 17 Apr, 2019 1 commit
  15. 24 Mar, 2019 2 commits
  16. 13 Mar, 2019 1 commit
  17. 12 Mar, 2019 1 commit
  18. 27 Feb, 2019 1 commit
  19. 13 Feb, 2019 1 commit
  20. 06 Jan, 2019 1 commit
  21. 21 Dec, 2018 1 commit
    • Fix float precision (#649) · abf941b2
      The issue is that numbers like
      2.01 or 3.01 can not be precisely represented with binary floating point
      numbers.
      
      This replaces all occurrences of 'std::numeric_limits<T>::digits10 + 1' with
      'std::numeric_limits<T>::max_digits10'.
      
      Background:
      Using 'std::numeric_limits<T>::digits10 + 1' is not precise enough.
      Converting a 'float' into a 'string' and back to a 'float' will not always
      produce the original 'float' value. To guarantee that the 'string'
      representation has sufficient precision the value
      'std::numeric_limits<T>::max_digits10' has to be used.
      Simon Gene Gottlieb committed
  22. 23 Nov, 2018 1 commit
  23. 19 Nov, 2018 1 commit
  24. 18 Nov, 2018 1 commit
  25. 25 Sep, 2018 1 commit
  26. 23 Sep, 2018 1 commit
  27. 06 Sep, 2018 1 commit