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 <hieu@hoang.co.uk>2013-05-31 03:00:21 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-05-31 03:00:21 +0400
commit65d2d68bc5aa405e74986c3c1a7b3bcf845ee231 (patch)
treee6e11fe12011a7374b904b6bd16ab4dd96a2e80f /moses/FactorTypeSet.cpp
parentd9bd7dc818ade5326e408c9554cfee81e5ca808e (diff)
beautify
Diffstat (limited to 'moses/FactorTypeSet.cpp')
-rw-r--r--moses/FactorTypeSet.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/moses/FactorTypeSet.cpp b/moses/FactorTypeSet.cpp
index 44379e9f8..9ead1053a 100644
--- a/moses/FactorTypeSet.cpp
+++ b/moses/FactorTypeSet.cpp
@@ -36,11 +36,11 @@ FactorMask::FactorMask(const vector<FactorType> &factors)
bool FactorMask::IsUseable(const FactorMask &other) const
{
for (size_t i = 0; i < other.size(); ++i) {
- if (other[i]) {
- if (!this->operator[](i) ) {
- return false;
- }
- }
+ if (other[i]) {
+ if (!this->operator[](i) ) {
+ return false;
+ }
+ }
}
return true;