summaryrefslogtreecommitdiff
path: root/vest/comb_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
commitd66f09f1348f9805149b9eab4940cb9c00742984 (patch)
tree3ac00e5359b08d27163a28ed5608953ff6bc589c /vest/comb_scorer.cc
parent59fdf560bfcb324a08971bbd3c0ebbbb39c6409c (diff)
Score::Clone() via CRTP
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@360 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'vest/comb_scorer.cc')
-rw-r--r--vest/comb_scorer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vest/comb_scorer.cc b/vest/comb_scorer.cc
index a921aa4d..9fc37868 100644
--- a/vest/comb_scorer.cc
+++ b/vest/comb_scorer.cc
@@ -4,7 +4,7 @@
using namespace std;
-class BLEUTERCombinationScore : public Score {
+class BLEUTERCombinationScore : public ScoreBase<BLEUTERCombinationScore> {
friend class BLEUTERCombinationScorer;
public:
~BLEUTERCombinationScore();