Date: Thu, 22 Aug 2013 11:51:47 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325187 - head/graphics/glosm/files Message-ID: <201308221151.r7MBplB2049649@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Thu Aug 22 11:51:47 2013 New Revision: 325187 URL: http://svnweb.freebsd.org/changeset/ports/325187 Log: Fix build with clang Added: head/graphics/glosm/files/ head/graphics/glosm/files/patch-libglosm-server-include-glosm-BBox.hh (contents, props changed) Added: head/graphics/glosm/files/patch-libglosm-server-include-glosm-BBox.hh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/glosm/files/patch-libglosm-server-include-glosm-BBox.hh Thu Aug 22 11:51:47 2013 (r325187) @@ -0,0 +1,11 @@ +--- libglosm-server/include/glosm/BBox.hh.orig 2011-02-27 18:05:45.000000000 +0300 ++++ libglosm-server/include/glosm/BBox.hh 2013-08-22 15:50:54.227227655 +0400 +@@ -48,7 +48,7 @@ + /** + * Constructs empty bounding box + */ +- BBox(): BBox<T>::Empty() { ++ BBox(): left(std::numeric_limits<T>::max()), bottom(std::numeric_limits<T>::max()), right(std::numeric_limits<T>::min()), top(std::numeric_limits<T>::min()) { + } + + /**
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308221151.r7MBplB2049649>