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:
authorHieu Hoang <fishandfrolick@gmail.com>2013-06-10 21:11:55 +0400
committerHieu Hoang <fishandfrolick@gmail.com>2013-06-10 21:11:55 +0400
commitabe6bb7c2257cce6ed746e54fdd97fbf1f1ef3aa (patch)
tree5cff23f9434a2bd500ee55c4839e753cc119388c /moses/DecodeGraph.h
parent96d116dba09f4c29fbbfa1edd3d52a31a4b74b49 (diff)
refactor parsing of feature functiona args
Diffstat (limited to 'moses/DecodeGraph.h')
-rw-r--r--moses/DecodeGraph.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/moses/DecodeGraph.h b/moses/DecodeGraph.h
index ad5eb8ace..4225e4a84 100644
--- a/moses/DecodeGraph.h
+++ b/moses/DecodeGraph.h
@@ -47,14 +47,14 @@ public:
**/
DecodeGraph(size_t position)
: m_position(position)
- , m_maxChartSpan(NOT_FOUND)
- {}
+ , m_maxChartSpan(NOT_FOUND) {
+ }
// for chart decoding
DecodeGraph(size_t position, size_t maxChartSpan)
: m_position(position)
- , m_maxChartSpan(maxChartSpan)
- {}
+ , m_maxChartSpan(maxChartSpan) {
+ }
//! iterators
typedef std::list<const DecodeStep*>::iterator iterator;