From 7d36ef88bcea82bfdc0146245e13d9e74572fa8f Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Wed, 11 Oct 2017 09:17:35 -0400 Subject: [PATCH] evas: Compile out unused functions These timestamp functions are not currently being called, perhaps they were intended for something later?, but for now just #if 0 them out as they are not used Signed-off-by: Chris Michael --- src/lib/evas/cache/evas_cache_image.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/evas/cache/evas_cache_image.c b/src/lib/evas/cache/evas_cache_image.c index 1e3eb88..b2d83aa 100644 --- a/src/lib/evas/cache/evas_cache_image.c +++ b/src/lib/evas/cache/evas_cache_image.c @@ -196,6 +196,7 @@ _evas_cache_image_entry_delete(Evas_Cache_Image *cache, Image_Entry *ie) cache->func.dealloc(ie); } +#if 0 static Eina_Bool _timestamp_compare(Image_Timestamp *tstamp, struct stat *st) { @@ -228,6 +229,7 @@ _timestamp_build(Image_Timestamp *tstamp, struct stat *st) #endif #endif } +#endif static Image_Entry * _evas_cache_image_entry_new(Evas_Cache_Image *cache, -- 2.7.4