Skip to content
Snippets Groups Projects
  1. Dec 18, 2020
  2. Dec 15, 2020
  3. Dec 10, 2020
  4. Dec 05, 2020
  5. Dec 04, 2020
  6. Dec 02, 2020
  7. Nov 26, 2020
  8. Nov 25, 2020
  9. Oct 26, 2020
  10. Sep 11, 2020
  11. Sep 10, 2020
  12. Jul 21, 2020
  13. Jul 15, 2020
  14. Jul 06, 2020
  15. Jun 13, 2020
    • Arseny Kapoulkine's avatar
      Work around a false positive in MSVC debug runtime checker · 23ca9404
      Arseny Kapoulkine authored
      In some MSVC versions on x64 configurations, the hashing function
      triggers this failure:
      
      Run-Time Check Failure #1 - A cast to a smaller data type has caused a
      loss of data.  If this was intentional, you should mask the source of
      the cast with the appropriate bitmask.
      
      This is similar to the integer sanitizer - this code is valid C++ but
      MSVC decides to warn about this nonetheless. Masking the pointer's low
      32 bits fixes the issue.
      
      Fixes #357.
      23ca9404
  16. May 11, 2020
  17. May 10, 2020
  18. May 02, 2020
    • Arseny Kapoulkine's avatar
      Clarify the document element behavior. · f49d7acd
      Arseny Kapoulkine authored
      pugixml currently unconditionally accepts documents with multiple
      top-level element nodes in absence of parse_fragment. This is an
      unfortunate omission; while it can be corrected, it will result in
      regressions for some users, and it's trivial to perform the validity
      check after the parse is done.
      
      Because of this, for now we're just going to amend documentation here to
      both highlight this in the W3C Conformance section, but also to more
      strongly push users into realizing that there's just a single document
      element (normally).
      
      We might decide to change the behavior here to prohibit such documents
      by default in the future, but for now a documentation change seems like
      a better tradeoff.
      
      Fixes #337
      f49d7acd
    • Arseny Kapoulkine's avatar
      Merge pull request #349 from KyleFromKitware/cmake-improvements · 28577635
      Arseny Kapoulkine authored
      Various CMake improvements
  19. Apr 27, 2020
Loading