1. 14 Sep, 2018 1 commit
  2. 11 Sep, 2018 8 commits
  3. 08 Sep, 2018 1 commit
  4. 29 Aug, 2018 4 commits
  5. 28 Aug, 2018 4 commits
  6. 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
  7. 17 Jul, 2018 4 commits
  8. 24 Jun, 2018 4 commits
  9. 21 Jun, 2018 2 commits
  10. 15 Jun, 2018 1 commit
  11. 24 May, 2018 1 commit
  12. 18 May, 2018 1 commit
  13. 07 May, 2018 1 commit
  14. 06 May, 2018 3 commits
  15. 29 Apr, 2018 2 commits
  16. 24 Apr, 2018 1 commit
  17. 22 Apr, 2018 1 commit
    • Minor fix for MSVC warning CS4459 (#1374) · ed670055
      When using pybind11 to bind enums on MSVC and warnings (/W4) enabled,
      the following warning pollutes builds. This fix renames one of the
      occurrences.
      
      pybind11\include\pybind11\pybind11.h(1398): warning C4459: declaration of 'self' hides global declaration
      pybind11\include\pybind11\operators.h(41): note: see declaration of 'pybind11::detail::self'
      Wenzel Jakob committed