From 9965748795e571951ec2401a605ed6430a10b93a Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Thu, 13 Jan 2022 07:10:47 -0500 Subject: [PATCH] Use std::shared_ptr in place of boost::shared_array It works the same here --- include/gal/opengl/opengl_gal.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/gal/opengl/opengl_gal.h b/include/gal/opengl/opengl_gal.h index d4250f6578..0781ab2015 100644 --- a/include/gal/opengl/opengl_gal.h +++ b/include/gal/opengl/opengl_gal.h @@ -310,7 +310,7 @@ public: VERTEX_MANAGER* vboManager; /// Intersect points, that have to be freed after tessellation - std::deque< boost::shared_array >& intersectPoints; + std::deque>& intersectPoints; }; private: @@ -367,8 +367,8 @@ private: std::unique_ptr m_bitmapCache; // Polygon tesselation - GLUtesselator* m_tesselator; - std::deque< boost::shared_array > m_tessIntersects; + GLUtesselator* m_tesselator; + std::deque> m_tessIntersects; /// @copydoc GAL::BeginUpdate() void beginUpdate() override;