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;