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:
Diffstat (limited to 'phrase-extract/Hole.h')
-rw-r--r--phrase-extract/Hole.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/phrase-extract/Hole.h b/phrase-extract/Hole.h
index efedf2f53..f0773fa9e 100644
--- a/phrase-extract/Hole.h
+++ b/phrase-extract/Hole.h
@@ -40,15 +40,15 @@ public:
: m_start(2)
, m_end(2)
, m_pos(2)
- , m_label(2)
- {}
+ , m_label(2) {
+ }
Hole(const Hole &copy)
: m_start(copy.m_start)
, m_end(copy.m_end)
, m_pos(copy.m_pos)
- , m_label(copy.m_label)
- {}
+ , m_label(copy.m_label) {
+ }
Hole(int startS, int endS, int startT, int endT)
: m_start(2)