浏览代码

ERR: We can't assume a vector iterator is a pointer. It must be dereferenced to get a reference to the element, and then we can take the address of that to get a pointer. "i" becomes "&*i"

Brad King 24 年之前
父节点
当前提交
57c4325c7d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/cmMakeDepend.cxx

+ 1 - 1
Source/cmMakeDepend.cxx

@@ -68,7 +68,7 @@ void cmMakeDepend::SetMakefile(cmMakefile* makefile)
         info->m_FullPath = this->FullPath(i->m_FullPath.c_str());
         this->AddFileToSearchPath(info->m_FullPath.c_str());
         info->m_IncludeName = i->m_FullPath;
-        info->m_ClassFileIndex = i;
+        info->m_ClassFileIndex = &*i;
         m_DependInformation.push_back(info);
         }
       }