Skip to content

Commit

Permalink
Removed comparison operators for issue reported in #10.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Lemstra committed May 27, 2017
1 parent ab46a4c commit e51a70e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions pythonmagick_src/_VPath.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ void Export_pyste_src_VPath()
class_< Magick::VPath >("VPath", init< >())
.def(init< const Magick::VPathBase& >())
.def(init< const Magick::VPath& >())
.def( self == self )
.def( self != self )
.def( self > self )
.def( self < self )
.def( self >= self )
.def( self <= self )
;

}
Expand Down

0 comments on commit e51a70e

Please sign in to comment.