--- branches/development/src/math/Triangle.hpp 2011/11/22 20:38:56 1665 +++ branches/development/src/math/Triangle.hpp 2013/01/09 19:27:52 1825 @@ -189,7 +189,6 @@ namespace OpenMD { RealType t2 = -a1 + b1 + c1; RealType t3 = a1 - b1 + c1; RealType t4 = a1 + b1 - c1; - RealType junk = t1*t2*t3*t4; return a1 * b1 * c1 / sqrt(t1 * t2 * t3 * t4); }