X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..1c3328f8047e2e5602ed3cd87044ce274e9ff978:/src/xbt/xbt_virtu.cpp diff --git a/src/xbt/xbt_virtu.cpp b/src/xbt/xbt_virtu.cpp index 5902f3adb3..1b983a0ecc 100644 --- a/src/xbt/xbt_virtu.cpp +++ b/src/xbt/xbt_virtu.cpp @@ -1,6 +1,6 @@ /* virtualization layer for XBT */ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -12,7 +12,7 @@ int xbt_getpid() { const simgrid::kernel::actor::ActorImpl* self = SIMIX_process_self(); - return self == nullptr ? 0 : self->get_pid(); + return self == nullptr ? 0 : static_cast(self->get_pid()); } const char* xbt_procname(void)