Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Correct signature for deleted constructor.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 31 May 2023 08:48:26 +0000 (10:48 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 1 Jun 2023 07:20:33 +0000 (09:20 +0200)
src/mc/api/strategy/WaitStrategy.hpp

index f1b2a85..7247e16 100644 (file)
@@ -19,7 +19,7 @@ class WaitStrategy : public Strategy {
 public:
   WaitStrategy()                     = default;
   ~WaitStrategy() override           = default;
-  WaitStrategy(const BasicStrategy&) = delete;
+  WaitStrategy(const WaitStrategy&)  = delete;
   WaitStrategy& operator=(const WaitStrategy& guide)
   {
     taken_wait_ = guide.taken_wait_;