mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
OSX: Fixed compile error.
This commit is contained in:
parent
bd5fec510c
commit
e12c84c2e6
1 changed files with 1 additions and 1 deletions
|
@ -856,7 +856,7 @@ struct HalfEdges
|
|||
{
|
||||
m_data = (HalfEdge*)malloc(2 * _numIndices * sizeof(HalfEdge));
|
||||
|
||||
std::unordered_map<uint16_t, std::vector<uint16_t>> edges;
|
||||
std::unordered_map<uint16_t, std::vector<uint16_t> > edges;
|
||||
for (uint32_t ii = 0; ii < _numIndices; ii+=3)
|
||||
{
|
||||
uint16_t idx0 = _indices[ii];
|
||||
|
|
Loading…
Reference in a new issue