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:
-rw-r--r--phrase-extract/SyntaxNodeCollection.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/phrase-extract/SyntaxNodeCollection.h b/phrase-extract/SyntaxNodeCollection.h
index da0e1eca3..ef0989cd0 100644
--- a/phrase-extract/SyntaxNodeCollection.h
+++ b/phrase-extract/SyntaxNodeCollection.h
@@ -56,7 +56,9 @@ public:
};
//! Get the number of words (defined as 1 + the max end pos of any node).
- std::size_t GetNumWords() const { return m_numWords; }
+ std::size_t GetNumWords() const {
+ return m_numWords;
+ }
//! Clear the container (this deletes the SyntaxNodes).
void Clear();