Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update python/clusters-multicpu to the new API.
[simgrid.git] / examples / cpp / dht-kademlia / answer.hpp
index 659528425a650e05121bc1650f0536d9b19f5ff4..e942b9905a2d2091febf703a6f999ab74d948888 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012-2021. The SimGrid Team.
+/* Copyright (c) 2012-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -19,7 +19,6 @@ class Answer {
 
 public:
   explicit Answer(unsigned int destination_id) : destination_id_(destination_id) {}
-  virtual ~Answer() = default;
   unsigned int getDestinationId() const { return destination_id_; }
   size_t getSize() const { return nodes_.size(); }
   const std::vector<std::pair<unsigned int, unsigned int>>& getNodes() const { return nodes_; }