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:
authorMatthias Huck <huck@i6.informatik.rwth-aachen.de>2014-12-04 22:16:30 +0300
committerMatthias Huck <huck@i6.informatik.rwth-aachen.de>2014-12-04 22:16:30 +0300
commit59fd278ef7f71da99076113fac1bd6c72e35b7ec (patch)
treebb372b820fc013394b97120e018900bd8ab72925
parentad243f350096d47137a79b214ab38032d7f37ff2 (diff)
IOWrapper: less compiler warnings
-rw-r--r--moses/IOWrapper.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/moses/IOWrapper.h b/moses/IOWrapper.h
index 3244be44c..869ea6a25 100644
--- a/moses/IOWrapper.h
+++ b/moses/IOWrapper.h
@@ -75,20 +75,18 @@ protected:
const std::vector<Moses::FactorType> *m_inputFactorOrder;
const std::vector<Moses::FactorType> *m_outputFactorOrder;
- Moses::FactorMask m_inputFactorUsed;
- std::string m_inputFilePath;
- Moses::InputFileStream *m_inputFile;
- std::istream *m_inputStream;
+ Moses::FactorMask m_inputFactorUsed;
+ std::string m_inputFilePath;
+ Moses::InputFileStream *m_inputFile;
+ std::istream *m_inputStream;
std::ostream *m_nBestStream;
std::ostream *m_outputWordGraphStream;
+ std::ostream *m_outputSearchGraphStream;
std::ostream *m_detailedTranslationReportingStream;
+ std::ostream *m_unknownsStream;
+ std::ostream *m_detailedTreeFragmentsTranslationReportingStream;
std::ofstream *m_alignmentInfoStream;
- std::ostream *m_unknownsStream;
- std::ostream *m_outputSearchGraphStream;
std::ofstream *m_latticeSamplesStream;
- std::ostream *m_detailedTreeFragmentsTranslationReportingStream;
-
- bool m_surpressSingleBestOutput;
Moses::OutputCollector *m_singleBestOutputCollector;
Moses::OutputCollector *m_nBestOutputCollector;
@@ -100,6 +98,8 @@ protected:
Moses::OutputCollector *m_latticeSamplesCollector;
Moses::OutputCollector *m_detailTreeFragmentsOutputCollector;
+ bool m_surpressSingleBestOutput;
+
// CHART
typedef std::vector<std::pair<Moses::Word, Moses::WordsRange> > ApplicationContext;