1. 11 Oct, 2018 1 commit
  2. 10 Oct, 2018 1 commit
  3. 02 Oct, 2018 1 commit
  4. 27 Sep, 2018 1 commit
  5. 25 Sep, 2018 1 commit
    • Fix potential crash when calling an overloaded function (#1327) · e7761e33
      * Fix potential crash when calling an overloaded function
      
      The crash would occur if:
      - dispatcher() uses two-pass logic (because the target is overloaded and some arguments support conversions)
      - the first pass (with conversions disabled) doesn't find any matching overload
      - the second pass does find a matching overload, but its return value can't be converted to Python
      
      The code for formatting the error message assumed `it` still pointed to the selected overload,
      but during the second-pass loop `it` was nullptr. Fix by setting `it` correctly if a second-pass
      call returns a nullptr `handle`. Add a new test that segfaults without this fix.
      
      * Make overload iteration const-correct so we don't have to iterate again on second-pass error
      
      * Change test_error_after_conversions dependencies to local classes/variables
      oremanj committed
  6. 14 Sep, 2018 2 commits
  7. 11 Sep, 2018 8 commits
  8. 08 Sep, 2018 1 commit
  9. 29 Aug, 2018 4 commits
  10. 28 Aug, 2018 4 commits
  11. 19 Jul, 2018 1 commit
    • Fix compatibility with catch v2 · f7bc18f5
      Catch v2 changed the `run(...)` signature to take a `char *argv[]`,
      arguing partly that technically a `char *argv[]` type is the correct
      `main()` signature rather than `const char *argv[]`.
      
      Dropping the `const` here doesn't appear to cause any problems with
      catch v1 (tested against both the cmake-downloaded 1.9.3 and Debian's
      1.12.1 package) so we can follow suit.
      Jason Rhinelander committed
  12. 17 Jul, 2018 4 commits
  13. 24 Jun, 2018 4 commits
  14. 21 Jun, 2018 2 commits
  15. 15 Jun, 2018 1 commit
  16. 24 May, 2018 1 commit
  17. 18 May, 2018 1 commit
  18. 07 May, 2018 1 commit
  19. 06 May, 2018 1 commit