summaryrefslogtreecommitdiff
path: root/quackleio/dict.h
diff options
context:
space:
mode:
authorMatt Liberty <matt.liberty@gmail.com>2013-11-03 22:43:22 -0800
committerMatt Liberty <matt.liberty@gmail.com>2013-11-03 22:43:22 -0800
commitecae4ba252c9b78d6b4fa6d14d2e694b8f71306a (patch)
treef2a8aaf923a222d223b0d4d86568864c802e2d76 /quackleio/dict.h
parent29ef933fda48f30a752e2dac2a8cb3f3d0f513b0 (diff)
Make clang happy (for Mavericks)
Diffstat (limited to 'quackleio/dict.h')
-rw-r--r--quackleio/dict.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/quackleio/dict.h b/quackleio/dict.h
index 4935e4b..49b9286 100644
--- a/quackleio/dict.h
+++ b/quackleio/dict.h
@@ -55,6 +55,10 @@ private:
ExtensionList getExtensionList(bool front) const;
};
+// Returns true if word1 is less playable than word2;
+// otherwise returns false.
+bool operator<(const Dict::Word &word1, const Dict::Word &word2);
+
class WordList : public QList<Word>
{
public:
@@ -84,8 +88,4 @@ public:
}
-// Returns true if word1 is less playable than word2;
-// otherwise returns false.
-bool operator<(const Dict::Word &word1, const Dict::Word &word2);
-
#endif