1,修改编码规范

2,屏蔽三方开源头文件OAT

Signed-off-by: chencheng31 <chencheng8@huawei.com>
This commit is contained in:
chencheng31
2022-03-16 12:36:03 +08:00
parent 3086fb6897
commit f994b91a97
32 changed files with 89 additions and 87 deletions
+3 -3
View File
@@ -124,7 +124,7 @@ uint32_t ReferenceParser::ParseRefInProfile(const string &output) const
return false;
}
if (entry->GetFilePath().GetExtension() != ".json" ) {
if (entry->GetFilePath().GetExtension() != ".json") {
continue;
}
@@ -305,7 +305,7 @@ bool ReferenceParser::ParseRefJsonImpl(Json::Value &node) const
}
} else if (node.isArray()) {
for (Json::ArrayIndex i = 0; i < node.size(); i++) {
if (!ParseRefJsonImpl(node[i])) {
if (!ParseRefJsonImpl(node[i])) {
return false;
}
}
@@ -320,4 +320,4 @@ bool ReferenceParser::ParseRefJsonImpl(Json::Value &node) const
}
}
}
}
}