From 4fa4b9a1359131d861470376a34750211cf1a1ae Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 19 Jan 2017 20:54:24 +0100 Subject: remove use of boost::optional to define "undefined" Canvas::Rect, and use Rect::empty instead. This commit includes Rect::operator bool() which might be a candidate for removal in a future commit, in an attempt to make the meaning clearer --- libs/canvas/poly_item.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/canvas/poly_item.cc') diff --git a/libs/canvas/poly_item.cc b/libs/canvas/poly_item.cc index 855140856e..fc60778960 100644 --- a/libs/canvas/poly_item.cc +++ b/libs/canvas/poly_item.cc @@ -63,7 +63,7 @@ PolyItem::compute_bounding_box () const } else { - _bounding_box = boost::optional (); + _bounding_box = Rect (); } _bounding_box_dirty = false; -- cgit v1.2.3