X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1d83468696010801d74f8bc1e8c30918ffebabac..ed46c4a5902837fa82e457d112b48b2d2684887c:/src/mc/remote/RemotePtr.hpp?ds=sidebyside diff --git a/src/mc/remote/RemotePtr.hpp b/src/mc/remote/RemotePtr.hpp index 6288fd5d02..de93572987 100644 --- a/src/mc/remote/RemotePtr.hpp +++ b/src/mc/remote/RemotePtr.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2008-2018. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2008-2019. 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. */ @@ -7,12 +6,7 @@ #ifndef SIMGRID_MC_REMOTE_PTR_HPP #define SIMGRID_MC_REMOTE_PTR_HPP -#include -#include -#include - -#include -#include +#include "src/simix/smx_private.hpp" namespace simgrid { namespace mc { @@ -55,8 +49,7 @@ public: std::size_t getBufferSize() const { return sizeof(T); } operator T() const { -//FIXME: assert turned off because smpi:Request is not seen as "trivial". -// static_assert(std::is_trivial::value, "Cannot convert non trivial type"); + static_assert(std::is_trivial::value, "Cannot convert non trivial type"); return buffer; } void clear() { std::memset(static_cast(&buffer), 0, sizeof(T)); }