1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-28 13:04:17 -04:00

Fixed -Wunused-variable warnings

This commit is contained in:
f4exb
2020-11-14 18:45:05 +01:00
parent 55eb6cc951
commit 7a6636b63a
39 changed files with 7 additions and 85 deletions
+1 -1
View File
@@ -118,7 +118,7 @@ void AzEl::calcAzimuth()
double aCos = std::cos(aLat);
double aSin = std::sin(aLat);
double bx = (bRot.m_cart.m_x * aCos) - (bRot.m_cart.m_z * aSin);
//double bx = (bRot.m_cart.m_x * aCos) - (bRot.m_cart.m_z * aSin);
double by = bRot.m_cart.m_y;
double bz = (bRot.m_cart.m_x * aSin) + (bRot.m_cart.m_z * aCos);