summaryrefslogtreecommitdiff
path: root/extractor/phrase.cc
diff options
context:
space:
mode:
authorPaul Baltescu <pauldb89@gmail.com>2013-03-06 17:35:49 +0000
committerPaul Baltescu <pauldb89@gmail.com>2013-03-06 17:35:49 +0000
commitfa9a4f72cb1fc8de823a11db4e510fccbe1c3532 (patch)
tree4aaf11038e8c91e5903d06c6f6e81239476c6f91 /extractor/phrase.cc
parentde708edda64bf210f99a85deba9fe35af41856b0 (diff)
Added 3 missing unit tests.
Diffstat (limited to 'extractor/phrase.cc')
-rw-r--r--extractor/phrase.cc2
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;
}