From 76d0f7f74d5e288eb5227c1ac3ccf411d0e9ca0f Mon Sep 17 00:00:00 2001 From: Randy Mackay Date: Sun, 28 Apr 2013 17:22:58 +0900 Subject: [PATCH] Copter: fix compiler warning re unused float_int --- ArduCopter/ArduCopter.pde | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ArduCopter/ArduCopter.pde b/ArduCopter/ArduCopter.pde index d85204ae48..8fef58152e 100644 --- a/ArduCopter/ArduCopter.pde +++ b/ArduCopter/ArduCopter.pde @@ -484,13 +484,6 @@ static float scaleLongDown = 1; // Used by Mavlink for unknow reasons static const float radius_of_earth = 6378100; // meters -// Unions for getting byte values -static union float_int { - int32_t int_value; - float float_value; -} float_int; - - //////////////////////////////////////////////////////////////////////////////// // Location & Navigation ////////////////////////////////////////////////////////////////////////////////