diff options
Diffstat (limited to 'extractor/phrase.cc')
-rw-r--r-- | extractor/phrase.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extractor/phrase.cc b/extractor/phrase.cc index 244fab07..e619bfe5 100644 --- a/extractor/phrase.cc +++ b/extractor/phrase.cc @@ -34,7 +34,7 @@ vector<string> Phrase::GetWords() const { return words; } -int Phrase::operator<(const Phrase& other) const { +bool Phrase::operator<(const Phrase& other) const { return symbols < other.symbols; } |