efl/gfx: Remove unused function
authorJean-Philippe Andre <jp.andre@samsung.com>
Tue, 25 Apr 2017 12:21:54 +0000 (21:21 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Tue, 25 Apr 2017 12:22:32 +0000 (21:22 +0900)
This fixes a warning with -Wunused-function

src/lib/efl/interfaces/efl_gfx_path.c

index 42d9bc5..5c3aa64 100644 (file)
@@ -274,12 +274,6 @@ interpolate(double from, double to, double pos_map)
    return (from * (1.0 - pos_map)) + (to * pos_map);
 }
 
-static inline int
-interpolatei(int from, int to, double pos_map)
-{
-   return (from * (1.0 - pos_map)) + (to * pos_map);
-}
-
 static Eina_Bool
 _efl_gfx_path_interpolate(Eo *obj, Efl_Gfx_Path_Data *pd,
                            const Eo *from, const Eo *to, double pos_map)