Fix Clang warnings: Unused variable Pi

warning: unused variable 'Pi' [-Wunused-const-variable]
static const double Pi = 3.14159265358979323846264338327950288419717;
This commit is contained in:
Phenom 2017-03-29 18:13:17 +02:00 committed by csoler
parent fd92bca688
commit 94ac8216f7

View File

@ -46,7 +46,7 @@
#include <math.h>
static const double Pi = 3.14159265358979323846264338327950288419717;
//static const double Pi = 3.14159265358979323846264338327950288419717;
Edge::Edge(Node *sourceNode, Node *destNode)
: arrowSize(10)