Fix clang compiler errors (">>" -> "> >")
This commit is contained in:
parent
7fdfd7423f
commit
0ee03d276d
wrap/io_trimesh
|
@ -129,8 +129,8 @@ public:
|
|||
int current = 0;
|
||||
int totalPrimitives = m.vn+m.fn;
|
||||
|
||||
typename SaveMeshType::template PerMeshAttributeHandle<std::vector<Material>> materialsHandle =
|
||||
vcg::tri::Allocator<SaveMeshType>::template FindPerMeshAttribute<std::vector<Material>>(m, "materials");
|
||||
typename SaveMeshType::template PerMeshAttributeHandle<std::vector<Material> > materialsHandle =
|
||||
vcg::tri::Allocator<SaveMeshType>::template FindPerMeshAttribute<std::vector<Material> >(m, "materials");
|
||||
|
||||
std::string fn(filename);
|
||||
int LastSlash=fn.size()-1;
|
||||
|
|
|
@ -256,8 +256,8 @@ namespace vcg {
|
|||
return E_CANTOPEN;
|
||||
}
|
||||
|
||||
typename OpenMeshType::template PerMeshAttributeHandle<std::vector<Material>> materialsHandle =
|
||||
vcg::tri::Allocator<OpenMeshType>:: template GetPerMeshAttribute<std::vector<Material>>(m, std::string("materials"));
|
||||
typename OpenMeshType::template PerMeshAttributeHandle<std::vector<Material> > materialsHandle =
|
||||
vcg::tri::Allocator<OpenMeshType>:: template GetPerMeshAttribute<std::vector<Material> >(m, std::string("materials"));
|
||||
typename OpenMeshType::template PerFaceAttributeHandle<int> mIndHandle =
|
||||
vcg::tri::Allocator<OpenMeshType>:: template GetPerFaceAttribute<int>(m, std::string("mInd"));
|
||||
std::vector<Material>& materials = materialsHandle(); // materials vector
|
||||
|
|
Loading…
Reference in New Issue