X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cf6a1cc5a48717bed67bcb9e32b77e51ea9f53c7..e9b99cc75875aaffe31d627aceb45a3583770d55:/src/xbt/dynar.cpp diff --git a/src/xbt/dynar.cpp b/src/xbt/dynar.cpp index bc635cab73..c26c077443 100644 --- a/src/xbt/dynar.cpp +++ b/src/xbt/dynar.cpp @@ -1,6 +1,6 @@ /* a generic DYNamic ARray implementation. */ -/* Copyright (c) 2004-2022. The SimGrid Team. +/* Copyright (c) 2004-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -353,15 +353,6 @@ void xbt_dynar_map(const_xbt_dynar_t dynar, void_f_pvoid_t op) } @endverbatim * - * And now, a function to sort a dynar of MSG hosts depending on their speed: - * @verbatim - int cmpfunc(const MSG_host_t a, const MSG_host_t b) { - MSG_host_t hostA = *(MSG_host_t*)a; - MSG_host_t hostB = *(MSG_host_t*)b; - return MSG_host_get_speed(hostA) - MSG_host_get_speed(hostB); - } - @endverbatim - * * @param dynar the dynar to sort * @param compar_fn comparison function of type (int (compar_fn*) (const void*) (const void*)). */