From: Arnaud Giersch Date: Thu, 26 Dec 2019 10:50:41 +0000 (+0100) Subject: Restore explicitely defined constructor (with empty body). X-Git-Tag: v3.25~215 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/10ee8f063aa0963534a92ad74c2bf23a9afaa2ae?ds=inline Restore explicitely defined constructor (with empty body). It seems to make a difference on freebsd with clang 10. --- diff --git a/src/smpi/include/smpi_f2c.hpp b/src/smpi/include/smpi_f2c.hpp index 867800fa63..0b96ef944f 100644 --- a/src/smpi/include/smpi_f2c.hpp +++ b/src/smpi/include/smpi_f2c.hpp @@ -36,6 +36,7 @@ class F2C { static char* get_key(char* key, int id); static void delete_lookup(); static std::unordered_map* lookup(); + F2C() {} virtual ~F2C() = default; //Override these to handle specific values.