From: Martin Quinson Date: Sun, 3 Nov 2019 21:57:35 +0000 (+0100) Subject: hide some cruft from the doc X-Git-Tag: v3.25~452 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/65c0d8a136e324c1ae8ba2d5a9d8082c21370239 hide some cruft from the doc --- 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 *****