X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5004e62b0038cf93f205c6eacb0d46c17258ce89..645080efe17d0ab008d7109252c2d2712c489f97:/src/smpi/mpi/smpi_f2c.cpp diff --git a/src/smpi/mpi/smpi_f2c.cpp b/src/smpi/mpi/smpi_f2c.cpp index 787a182d5d..dafd94029b 100644 --- a/src/smpi/mpi/smpi_f2c.cpp +++ b/src/smpi/mpi/smpi_f2c.cpp @@ -20,6 +20,9 @@ namespace smpi{ std::unordered_map* F2C::f2c_lookup_ = nullptr; int F2C::f2c_id_ = 0; +// Keep it non trivially-constructible, or it will break MC+smpi on FreeBSD with Clang (don't ask why) +F2C::F2C() = default; + std::unordered_map* F2C::f2c_lookup() { return f2c_lookup_;