Quietly put the missing [] in the shared_ptr
This commit is contained in:
parent
d0f2c20235
commit
3aff953c9c
|
@ -309,7 +309,7 @@ public:
|
||||||
VERTEX_MANAGER* vboManager;
|
VERTEX_MANAGER* vboManager;
|
||||||
|
|
||||||
/// Intersect points, that have to be freed after tessellation
|
/// Intersect points, that have to be freed after tessellation
|
||||||
std::deque<std::shared_ptr<GLdouble>>& intersectPoints;
|
std::deque<std::shared_ptr<GLdouble[]>>& intersectPoints;
|
||||||
};
|
};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -367,7 +367,7 @@ private:
|
||||||
|
|
||||||
// Polygon tesselation
|
// Polygon tesselation
|
||||||
GLUtesselator* m_tesselator;
|
GLUtesselator* m_tesselator;
|
||||||
std::deque<std::shared_ptr<GLdouble>> m_tessIntersects;
|
std::deque<std::shared_ptr<GLdouble[]>> m_tessIntersects;
|
||||||
|
|
||||||
/// @copydoc GAL::BeginUpdate()
|
/// @copydoc GAL::BeginUpdate()
|
||||||
void beginUpdate() override;
|
void beginUpdate() override;
|
||||||
|
|
Loading…
Reference in New Issue