Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfouet <jfouet@1f5c12ca-751b-0410-a591-d2e778427230>2008-06-04 12:33:37 +0400
committerjfouet <jfouet@1f5c12ca-751b-0410-a591-d2e778427230>2008-06-04 12:33:37 +0400
commitf849154a736a7362db4687a3e81198b61bb7327c (patch)
tree9843e2ef0f3f90a922e5d941d6bbd5ac4071f654 /mert/FeatureStats.cpp
parent8e54557e9f5a25fd22d4e6cc971f79838dd4f647 (diff)
fix FeatureStats::savetxt
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1815 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'mert/FeatureStats.cpp')
-rw-r--r--mert/FeatureStats.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mert/FeatureStats.cpp b/mert/FeatureStats.cpp
index 57ba179fc..62e59974a 100644
--- a/mert/FeatureStats.cpp
+++ b/mert/FeatureStats.cpp
@@ -73,7 +73,7 @@ void FeatureStats::savetxt(const std::string &file)
void FeatureStats::savetxt(std::ofstream& outFile)
{
TRACE_ERR("saving the stats" << std::endl);
- outFile << this;
+ outFile << *this;
}
void FeatureStats::savebin(std::ofstream& outFile)