code style

This commit is contained in:
john30
2017-12-26 14:27:44 +01:00
parent 631f05ab3f
commit b0e20b7c7c
7 changed files with 19 additions and 11 deletions
+2 -1
View File
@@ -658,7 +658,8 @@ bool SingleDataField::hasFullByteOffset(bool after) const {
}
size_t SingleDataField::getCount(PartType partType, const char* fieldName) const {
return isIgnored() || (partType != pt_any && partType != m_partType) || (fieldName != NULL && m_name != fieldName) ? 0 : 1;
return isIgnored() || (partType != pt_any && partType != m_partType) || (fieldName != NULL && m_name != fieldName)
? 0 : 1;
}