Skip to content
Snippets Groups Projects
Commit 2d765683 authored by Joseph Walton-Rivers's avatar Joseph Walton-Rivers
Browse files

vertex indices are unsigned, so make them unsigned to stop the linter being sad

parent 9f3c113b
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ namespace fggl::data {
return m_index.size();
}
inline Vertex &vertex(int idx) {
inline Vertex &vertex(uint32_t idx) {
return m_verts[idx];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment