From b47a06e42a51aee3a01da07f5df7a05be6c50b30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20W=C5=82ostowski?= Date: Thu, 14 Dec 2017 02:29:33 +0100 Subject: [PATCH] poly2tri: include stdexcept in each file throwing an std::exception. --- polygon/poly2tri/common/shapes.cc | 2 +- polygon/poly2tri/sweep/sweep.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/polygon/poly2tri/common/shapes.cc b/polygon/poly2tri/common/shapes.cc index 2c5508a6c6..e2a5922452 100644 --- a/polygon/poly2tri/common/shapes.cc +++ b/polygon/poly2tri/common/shapes.cc @@ -30,7 +30,7 @@ */ #include "shapes.h" #include -#include +#include namespace p2t { diff --git a/polygon/poly2tri/sweep/sweep.cc b/polygon/poly2tri/sweep/sweep.cc index 7d4e6adbe0..51a3886282 100644 --- a/polygon/poly2tri/sweep/sweep.cc +++ b/polygon/poly2tri/sweep/sweep.cc @@ -28,11 +28,11 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include #include "sweep.h" #include "sweep_context.h" #include "advancing_front.h" #include "../common/utils.h" +#include namespace p2t {