summaryrefslogtreecommitdiff
path: root/vest/aer_scorer.cc
diff options
context:
space:
mode:
authorgraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-21 20:12:44 +0000
committergraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-21 20:12:44 +0000
commitf80891a7c4a2834efc476ce4d29cc6c438e567f0 (patch)
tree44256925313682feb6beb7bb701b2d4624de5f48 /vest/aer_scorer.cc
parent37043945bebecad62af028f76549245ba020884e (diff)
Score::Clone() via CRTP
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@360 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'vest/aer_scorer.cc')
-rw-r--r--vest/aer_scorer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vest/aer_scorer.cc b/vest/aer_scorer.cc
index 81ffae76..25b58b5e 100644
--- a/vest/aer_scorer.cc
+++ b/vest/aer_scorer.cc
@@ -9,7 +9,7 @@
using namespace std;
-class AERScore : public Score {
+class AERScore : public ScoreBase<AERScore> {
friend class AERScorer;
public:
AERScore() : num_matches(), num_predicted(), num_in_ref() {}