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