From 8cdcfdf2f00416db8483442c4c9fd6a8965e2d75 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Thu, 23 Aug 2018 13:13:13 +0200 Subject: [PATCH] further replace using statements with typedef ones to please sphinx --- include/simgrid/forward.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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; } -- 2.20.1