X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a3aa914a86e54aa18beb5cbfb892ce8f0d48444e..8cdcfdf2f00416db8483442c4c9fd6a8965e2d75:/include/simgrid/forward.h diff --git a/include/simgrid/forward.h b/include/simgrid/forward.h index 3661be24db..c95d3ff53c 100644 --- a/include/simgrid/forward.h +++ b/include/simgrid/forward.h @@ -81,29 +81,29 @@ namespace kernel { class EngineImpl; namespace actor { class ActorImpl; -using ActorImplPtr = boost::intrusive_ptr; +typedef boost::intrusive_ptr ActorImplPtr; } // namespace actor namespace activity { class ActivityImpl; - using ActivityImplPtr = boost::intrusive_ptr; + typedef boost::intrusive_ptr ActivityImplPtr; XBT_PUBLIC void intrusive_ptr_add_ref(ActivityImpl* activity); XBT_PUBLIC void intrusive_ptr_release(ActivityImpl* activity); class ConditionVariableImpl; class CommImpl; - using CommImplPtr = boost::intrusive_ptr; + typedef boost::intrusive_ptr CommImplPtr; class ExecImpl; - using ExecImplPtr = boost::intrusive_ptr; + typedef boost::intrusive_ptr ExecImplPtr; class IoImpl; - using IoImplPtr = boost::intrusive_ptr; + typedef boost::intrusive_ptr IoImplPtr; class MutexImpl; - using MutexImplPtr = boost::intrusive_ptr; + typedef boost::intrusive_ptr MutexImplPtr; class RawImpl; - using RawImplPtr = boost::intrusive_ptr; + typedef boost::intrusive_ptr RawImplPtr; class SleepImpl; - using SleepImplPtr = boost::intrusive_ptr; + typedef boost::intrusive_ptr SleepImplPtr; class MailboxImpl; }