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:
authorNicola Bertoldi <bertoldi@fbk.eu>2014-05-19 17:34:27 +0400
committerNicola Bertoldi <bertoldi@fbk.eu>2014-05-19 17:34:27 +0400
commit2f3cd5e2fe54f0352eee4657ea91e0039073a95a (patch)
tree535b1f445dd9f762997bc0dd0ef7a17f9500e250 /moses/ChartParser.h
parentd85bd05e1827ceb917ab3664fee34fd05725eab6 (diff)
beautify
Diffstat (limited to 'moses/ChartParser.h')
-rw-r--r--moses/ChartParser.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/moses/ChartParser.h b/moses/ChartParser.h
index acd30179d..b9e82d2e7 100644
--- a/moses/ChartParser.h
+++ b/moses/ChartParser.h
@@ -48,7 +48,9 @@ public:
void Process(const Word &sourceWord, const WordsRange &range, ChartParserCallback &to);
- const std::vector<Phrase*> &GetUnknownSources() const { return m_unksrcs; }
+ const std::vector<Phrase*> &GetUnknownSources() const {
+ return m_unksrcs;
+ }
private:
std::vector<Phrase*> m_unksrcs;
@@ -69,7 +71,9 @@ public:
size_t GetSize() const;
const InputPath &GetInputPath(size_t startPos, size_t endPos) const;
const InputPath &GetInputPath(WordsRange &range) const;
- const std::vector<Phrase*> &GetUnknownSources() const { return m_unknown.GetUnknownSources(); }
+ const std::vector<Phrase*> &GetUnknownSources() const {
+ return m_unknown.GetUnknownSources();
+ }
private:
ChartParserUnknown m_unknown;