浏览代码

Update glTF2Asset.inl

some minor review finding: use brackets and add a newline.
Kim Kulling 5 年之前
父节点
当前提交
7967deb06a
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      code/glTF2/glTF2Asset.inl

+ 3 - 2
code/glTF2/glTF2Asset.inl

@@ -1492,10 +1492,11 @@ inline void Asset::SetAsBinary()
 inline void Asset::ReadExtensionsRequired(Document& doc)
 {
     Value* extsRequired = FindArray(doc, "extensionsRequired");
-    if (!extsRequired) return;
+    if (nullptr == extsRequired) {
+	return;
+    }
 
     std::gltf_unordered_map<std::string, bool> exts;
-
     for (unsigned int i = 0; i < extsRequired->Size(); ++i) {
         if ((*extsRequired)[i].IsString()) {
             exts[(*extsRequired)[i].GetString()] = true;