drop warinings as errors for now

This commit is contained in:
Scott Williams 2017-01-19 18:42:05 +00:00
Родитель 820e054480
Коммит 083c5f4013
3 изменённых файлов: 2 добавлений и 8 удалений

Просмотреть файл

@ -140,12 +140,6 @@ namespace Shaper2D.PolygonClipper
continue;
}
//can't have only 2 verticies
//if (edge.PreviousEdge == edge.NextEdge)
//{
// break; // only two vertices
//}
if (SlopesEqual(edge.PreviousEdge.Current, edge.Current, edge.NextEdge.Current))
{
// Collinear edges are allowed for open paths but in closed paths

Просмотреть файл

@ -37,7 +37,7 @@
"configurations": {
"Release": {
"buildOptions": {
"warningsAsErrors": true,
"warningsAsErrors": false,
"optimize": true
}
}

Просмотреть файл

@ -3,7 +3,7 @@
"configurations": {
"Release": {
"buildOptions": {
"warningsAsErrors": true
"warningsAsErrors": false
}
}
},