From 65c0d8a136e324c1ae8ba2d5a9d8082c21370239 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sun, 3 Nov 2019 22:57:35 +0100 Subject: [PATCH] hide some cruft from the doc --- include/simgrid/s4u/Actor.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/simgrid/s4u/Actor.hpp b/include/simgrid/s4u/Actor.hpp index 0eda16dc00..44b9301984 100644 --- a/include/simgrid/s4u/Actor.hpp +++ b/include/simgrid/s4u/Actor.hpp @@ -136,7 +136,7 @@ class XBT_PUBLIC Actor : public xbt::Extendable { explicit Actor(smx_actor_t pimpl) : pimpl_(pimpl) {} public: - +#ifndef DOXYGEN // ***** No copy ***** Actor(Actor const&) = delete; Actor& operator=(Actor const&) = delete; @@ -144,6 +144,8 @@ public: // ***** Reference count ***** friend XBT_PUBLIC void intrusive_ptr_add_ref(Actor * actor); friend XBT_PUBLIC void intrusive_ptr_release(Actor * actor); +#endif + /** Retrive the amount of references on that object. Useful to debug the automatic refcounting */ int get_refcount(); // ***** Actor creation ***** -- 2.20.1