Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix build error.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 25 Jan 2021 12:29:46 +0000 (13:29 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 25 Jan 2021 13:49:10 +0000 (14:49 +0100)
error: exception specification of explicitly defaulted move constructor does not match the calculated one.

src/mc/udpor_global.hpp

index 4e22cbb..a1d65b7 100644 (file)
@@ -53,7 +53,7 @@ public:
   Configuration()                     = default;
   Configuration(const Configuration&) = default;
   Configuration& operator=(Configuration const&) = default;
-  Configuration(Configuration&&) noexcept        = default;
+  Configuration(Configuration&&)                 = default;
   ~Configuration()                               = default;
 };
 
@@ -97,4 +97,4 @@ private:
 };
 } // namespace mc
 } // namespace simgrid
-#endif
\ No newline at end of file
+#endif