1. 19 Sep, 2015 2 commits
    • da_woods's avatar
      Further operator finding fixes · f1930c2d
      da_woods authored
      It wasn't finding nonmember operators with a class of the form:
      
      cdef cppclass C:
        C operator+(const C&, int)
      
      (i.e. with the class specified first)
      f1930c2d
    • da_woods's avatar
      Allow nonmember operators in c++ classes · 7f5608b9
      da_woods authored
      It's sometimes useful to have nonmember operators in c++
      e.g. C operator+(int, const C&)
      (So int can come first)
      
      These could be defined outside the "cdef cppclass" section
      but if they were in a pxd file they weren't easy to import
      and use.
      
      They can now be defined with the "cdef cppclass" and will
      be found and used appropriately
      e.g.
      
      cdef cppclass C:
        C operator+(int, const C&)
      
      Appropriate tests have been added
      7f5608b9
  2. 07 Sep, 2015 1 commit
  3. 06 Sep, 2015 5 commits
  4. 05 Sep, 2015 15 commits
  5. 04 Sep, 2015 10 commits
  6. 03 Sep, 2015 1 commit
  7. 02 Sep, 2015 5 commits
  8. 01 Sep, 2015 1 commit