From d732e770eeb47be378fffa1627391b9b5e8e8e7a Mon Sep 17 00:00:00 2001 From: MWM Planet Generator cdn3 Date: Mon, 16 Feb 2015 01:26:57 -0800 Subject: [PATCH] [linux][gcc][boost] Fixed gcc bug with boost https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63356 --- 3party/boost/boost/polygon/point_data.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/3party/boost/boost/polygon/point_data.hpp b/3party/boost/boost/polygon/point_data.hpp index 23c23ed2b0..e42a7aa78d 100644 --- a/3party/boost/boost/polygon/point_data.hpp +++ b/3party/boost/boost/polygon/point_data.hpp @@ -46,6 +46,9 @@ class point_data { } template +#ifdef __GNUC__ + explicit +#endif point_data(const PointType& that) { *this = that; }