From a782a61983c1bbaddad5370023ba40ad6e187fc2 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 22 Jan 2015 15:00:20 +1100 Subject: [PATCH] region: allow uninitialized construction --- region.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/region.hpp b/region.hpp index ebf9ba2a..d8db1d84 100644 --- a/region.hpp +++ b/region.hpp @@ -37,6 +37,7 @@ namespace util { position_type x, y; size_type w, h; + region () = default; region (util::point<2,T>, util::extent); region (T _x, T _y, size_type _w, size_type _h);