Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/poly2tri/sweep/advancing_front.cc')
-rw-r--r--src/poly2tri/sweep/advancing_front.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/poly2tri/sweep/advancing_front.cc b/src/poly2tri/sweep/advancing_front.cc
index 38723beef..66e2a5d0d 100644
--- a/src/poly2tri/sweep/advancing_front.cc
+++ b/src/poly2tri/sweep/advancing_front.cc
@@ -1,6 +1,6 @@
/*
- * Poly2Tri Copyright (c) 2009-2010, Poly2Tri Contributors
- * http://code.google.com/p/poly2tri/
+ * Poly2Tri Copyright (c) 2009-2018, Poly2Tri Contributors
+ * https://github.com/jhasse/poly2tri
*
* All rights reserved.
*
@@ -30,6 +30,8 @@
*/
#include "advancing_front.h"
+#include <cassert>
+
namespace p2t {
AdvancingFront::AdvancingFront(Node& head, Node& tail)
@@ -105,4 +107,4 @@ AdvancingFront::~AdvancingFront()
{
}
-} \ No newline at end of file
+}