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:
authorTetsuo Kiso <tetsuo-s@is.naist.jp>2011-11-12 04:24:19 +0400
committerTetsuo Kiso <tetsuo-s@is.naist.jp>2011-11-12 04:24:19 +0400
commit664ffe0130e76a32571965a5f9fce1f6ff176ae1 (patch)
tree098ca4c906c675ae023d3c8d729afc675ee9e62b /mert/FeatureStats.cpp
parent0fc56ae869a41ee77220b2468d4a0c1e2afd14aa (diff)
Fix indentation.
Diffstat (limited to 'mert/FeatureStats.cpp')
-rw-r--r--mert/FeatureStats.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/mert/FeatureStats.cpp b/mert/FeatureStats.cpp
index 7eac95528..cf8ae57f8 100644
--- a/mert/FeatureStats.cpp
+++ b/mert/FeatureStats.cpp
@@ -170,7 +170,7 @@ void FeatureStats::loadtxt(std::ifstream& inFile)
void FeatureStats::loadtxt(const std::string &file)
{
- // TRACE_ERR("loading the stats from " << file << std::endl);
+ // TRACE_ERR("loading the stats from " << file << std::endl);
std::ifstream inFile(file.c_str(), std::ios::in); // matches a stream with a file. Opens the file
@@ -180,7 +180,7 @@ void FeatureStats::loadtxt(const std::string &file)
void FeatureStats::savetxt(const std::string &file)
{
-// TRACE_ERR("saving the stats into " << file << std::endl);
+// TRACE_ERR("saving the stats into " << file << std::endl);
std::ofstream outFile(file.c_str(), std::ios::out); // matches a stream with a file. Opens the file
@@ -190,7 +190,7 @@ void FeatureStats::savetxt(const std::string &file)
void FeatureStats::savetxt(std::ofstream& outFile)
{
-// TRACE_ERR("saving the stats" << std::endl);
+// TRACE_ERR("saving the stats" << std::endl);
outFile << *this;
}