From: Martin Quinson Date: Fri, 4 Aug 2017 10:05:34 +0000 (+0200) Subject: sonar: remove unused type declaration X-Git-Tag: v3_17~247 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2e9d282e3dfb05871e1a5ec8751a0d22d6a830ee?hp=c1f992afc1dd52d28384fe663a11cf924dfe6783 sonar: remove unused type declaration --- diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index 03aec81f82..f9883a51d7 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -1,7 +1,6 @@ /* function_type.h - classical types for pointer to function */ -/* Copyright (c) 2006-2007, 2009-2010, 2012-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2006-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -18,8 +17,6 @@ typedef void *(*pvoid_f_void_t) (void); typedef void *(*pvoid_f_pvoid_t) (void *); typedef void (*void_f_void_t) (void); -typedef int (*int_f_pvoid_t) (void*); - typedef int (*int_f_pvoid_pvoid_t) (void *, void *); typedef int (*int_f_cpvoid_cpvoid_t) (const void *, const void *);