X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4340c977641036e7aa8ae5dcb69ccb3cac1df3c5..721ec43f492cf3667eabe6f8fd3c832d9a6aa229:/src/mc/AddressSpace.hpp diff --git a/src/mc/AddressSpace.hpp b/src/mc/AddressSpace.hpp index 4481e45fa2..b498665284 100644 --- a/src/mc/AddressSpace.hpp +++ b/src/mc/AddressSpace.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2014. The SimGrid Team. +/* Copyright (c) 2008-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -14,7 +14,7 @@ #include -#include "mc_forward.h" +#include "mc_forward.hpp" namespace simgrid { namespace mc { @@ -29,7 +29,7 @@ template class remote_ptr { public: remote_ptr() : address_(0) {} remote_ptr(std::uint64_t address) : address_(address) {} - remote_ptr(T* address) : address_((std::uint64_t)address) {} + remote_ptr(T* address) : address_((std::uintptr_t)address) {} std::uint64_t address() const { return address_; } operator bool() const {