X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/269fcd3a8b8e4ae311a99640e3993bdc30b98a5b..95199f4ffa751d3614a07fefe6b3caa6deca1b97:/include/xbt/dynar.hpp diff --git a/include/xbt/dynar.hpp b/include/xbt/dynar.hpp index 2129007223..d9f77b5c76 100644 --- a/include/xbt/dynar.hpp +++ b/include/xbt/dynar.hpp @@ -1,11 +1,11 @@ -/* Copyright (c) 2004-2007, 2009-2015. The SimGrid Team. +/* Copyright (c) 2004-2007, 2009-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. */ -#ifndef SIMGRId_XBT_DYNAR_HPP -#define SIMGRId_XBT_DYNAR_HPP +#ifndef SIMGRID_XBT_DYNAR_HPP +#define SIMGRID_XBT_DYNAR_HPP #include #include @@ -40,14 +40,6 @@ xbt_dynar_t newDeleteDynar() [](void* p) { delete *(T**)p; }); } -/** Dynar of `T*` which `destroy()` its values */ -template inline -xbt_dynar_t newDestroyDynar() -{ - return xbt_dynar_new(sizeof(T*), - [](void* p) { simgrid::xbt::destroy(*(T**)p); }); -} - } } #endif