X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6..746507d93cb9289402decfa7ffed666a4274ad16:/src/kernel/activity/MailboxImpl.cpp diff --git a/src/kernel/activity/MailboxImpl.cpp b/src/kernel/activity/MailboxImpl.cpp index 7be3b40fc8..f812f45522 100644 --- a/src/kernel/activity/MailboxImpl.cpp +++ b/src/kernel/activity/MailboxImpl.cpp @@ -1,4 +1,4 @@ -/* 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. */ @@ -42,7 +42,7 @@ MailboxImpl* MailboxImpl::by_name_or_create(const std::string& name) /* two processes may have pushed the same mbox_create simcall at the same time */ auto m = mailboxes.find(name); if (m == mailboxes.end()) { - MailboxImpl* mbox = new MailboxImpl(name); + auto* mbox = new MailboxImpl(name); XBT_DEBUG("Creating a mailbox at %p with name %s", mbox, name.c_str()); mailboxes[name] = mbox; return mbox; @@ -92,12 +92,10 @@ CommImplPtr MailboxImpl::iprobe(int type, bool (*match_fun)(void*, void*, CommIm CommImplPtr this_comm; CommImpl::Type smx_type; if (type == 1) { - this_comm = CommImplPtr(new CommImpl()); - this_comm->set_type(CommImpl::Type::SEND); + this_comm = CommImplPtr(new CommImpl(CommImpl::Type::SEND)); smx_type = CommImpl::Type::RECEIVE; } else { - this_comm = CommImplPtr(new CommImpl()); - this_comm->set_type(CommImpl::Type::RECEIVE); + this_comm = CommImplPtr(new CommImpl(CommImpl::Type::RECEIVE)); smx_type = CommImpl::Type::SEND; } CommImplPtr other_comm = nullptr;