Quietly put the missing [] in the shared_ptr

This commit is contained in:
Mark Roszko 2022-01-13 13:50:57 +00:00
parent d0f2c20235
commit 3aff953c9c
1 changed files with 2 additions and 2 deletions

View File

@ -309,7 +309,7 @@ public:
VERTEX_MANAGER* vboManager;
/// Intersect points, that have to be freed after tessellation
std::deque<std::shared_ptr<GLdouble>>& intersectPoints;
std::deque<std::shared_ptr<GLdouble[]>>& intersectPoints;
};
private:
@ -367,7 +367,7 @@ private:
// Polygon tesselation
GLUtesselator* m_tesselator;
std::deque<std::shared_ptr<GLdouble>> m_tessIntersects;
std::deque<std::shared_ptr<GLdouble[]>> m_tessIntersects;
/// @copydoc GAL::BeginUpdate()
void beginUpdate() override;