From 15d7feb18877ae5bda83c37d3e85e88c6a53ed0c Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 12 Apr 2013 17:03:39 +0100 Subject: [PATCH] Fix compilation of compact query --- misc/queryPhraseTableMin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/queryPhraseTableMin.cpp b/misc/queryPhraseTableMin.cpp index f2c6c6125..98e8a9787 100644 --- a/misc/queryPhraseTableMin.cpp +++ b/misc/queryPhraseTableMin.cpp @@ -60,7 +60,7 @@ int main(int argc, char **argv) StaticData::InstanceNonConst().LoadData(parameter); SparsePhraseDictionaryFeature *spdf = NULL; - PhraseDictionaryFeature pdf(Compact, spdf, nscores, nscores, input, output, ttable, weight, 0, 0, "", ""); + PhraseDictionaryFeature pdf(Compact, spdf, nscores, nscores, input, output, ttable, weight, 0, 0, std::vector()); PhraseDictionaryCompact pdc(nscores, Compact, &pdf, false, useAlignments); bool ret = pdc.Load(input, output, ttable, weight, 0, lmList, 0); assert(ret);