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 'moses/Syntax/S2T/RuleTrieCreator.h')
-rw-r--r--moses/Syntax/S2T/RuleTrieCreator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/moses/Syntax/S2T/RuleTrieCreator.h b/moses/Syntax/S2T/RuleTrieCreator.h
index 1fe99e609..e49a2cbde 100644
--- a/moses/Syntax/S2T/RuleTrieCreator.h
+++ b/moses/Syntax/S2T/RuleTrieCreator.h
@@ -13,7 +13,7 @@ namespace S2T
// OovHandler). RuleTrieCreator is a friend of RuleTrie.
class RuleTrieCreator
{
- protected:
+protected:
// Provide access to RuleTrie's private SortAndPrune function.
void SortAndPrune(RuleTrie &trie, std::size_t limit) {
trie.SortAndPrune(limit);
@@ -22,8 +22,8 @@ class RuleTrieCreator
// Provide access to RuleTrie's private GetOrCreateTargetPhraseCollection
// function.
TargetPhraseCollection &GetOrCreateTargetPhraseCollection(
- RuleTrie &trie, const Phrase &source, const TargetPhrase &target,
- const Word *sourceLHS) {
+ RuleTrie &trie, const Phrase &source, const TargetPhrase &target,
+ const Word *sourceLHS) {
return trie.GetOrCreateTargetPhraseCollection(source, target, sourceLHS);
}
};