From: Martin Quinson Date: Thu, 23 Aug 2018 11:13:13 +0000 (+0200) Subject: further replace using statements with typedef ones to please sphinx X-Git-Tag: v3_21~207 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/8cdcfdf2f00416db8483442c4c9fd6a8965e2d75?ds=sidebyside further replace using statements with typedef ones to please sphinx --- 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; }