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:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user