diff options
author | Paul Baltescu <pauldb89@gmail.com> | 2013-03-06 17:35:49 +0000 |
---|---|---|
committer | Paul Baltescu <pauldb89@gmail.com> | 2013-03-06 17:35:49 +0000 |
commit | fa9a4f72cb1fc8de823a11db4e510fccbe1c3532 (patch) | |
tree | 4aaf11038e8c91e5903d06c6f6e81239476c6f91 /extractor/phrase.cc | |
parent | de708edda64bf210f99a85deba9fe35af41856b0 (diff) |
Added 3 missing unit tests.
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; } |