Skip to content
Snippets Groups Projects
Commit 9f557a7c authored by Adam Radziszewski's avatar Adam Radziszewski
Browse files

fix equality and lt check in SWIG wrappers (the renames prevented the...

fix equality and lt check in SWIG wrappers (the renames prevented the automagic SWIG wrapping from working)
parent e88ac964
Branches
No related merge requests found
......@@ -15,9 +15,6 @@
%feature("notabstract") Corpus2::Lexeme;
%rename(__op_eq__) Corpus2::Lexeme::operator==(const Lexeme& other) const;
%rename(__op_lw__) Corpus2::Lexeme::operator<(const Lexeme& other) const;
%template(LexemeVector) std::vector<Corpus2::Lexeme>;
namespace Corpus2 {
......
......@@ -17,9 +17,6 @@
%feature("notabstract") Corpus2::Tag;
%rename(__op_eq__) Corpus2::Tag::operator==(const Tag& other) const;
%rename(__op_lw__) Corpus2::Tag::operator<(const Tag& other) const;
%template(TagVector) std::vector<Corpus2::Tag>;
namespace Corpus2 {
......
......@@ -18,8 +18,6 @@
%feature("notabstract") Corpus2::Token;
%rename(__op_eq__) Corpus2::Token::operator==(const Corpus2::Token& other) const;
%template(TokenPtr) boost::shared_ptr<Corpus2::Token>;
%template(ConstTokenPtr) boost::shared_ptr<const Corpus2::Token>;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment