From: Arnaud Giersch Date: Wed, 27 Sep 2017 09:23:55 +0000 (+0200) Subject: Delete unused copy constructor. X-Git-Tag: v3_17~70 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3879b7c86150161c2a378629839c795bda2b67e1 Delete unused copy constructor. --- diff --git a/examples/s4u/dht-chord/s4u-dht-chord.hpp b/examples/s4u/dht-chord/s4u-dht-chord.hpp index 50e7f602c3..4c44d8fc98 100644 --- a/examples/s4u/dht-chord/s4u-dht-chord.hpp +++ b/examples/s4u/dht-chord/s4u-dht-chord.hpp @@ -87,6 +87,7 @@ class Node { public: explicit Node(std::vector args); + Node(const Node&) = delete; ~Node(); void join(int known_id); void leave();