Skip to content

Commit

Permalink
Merge #6022
Browse files Browse the repository at this point in the history
6022: build(doxy): don't extract private members r=hkaiser a=bhumitattarde



Co-authored-by: Bhumit Attarde <bhumit.attarde01@gmail.com>
  • Loading branch information
StellarBot and bhumitattarde committed Oct 6, 2022
2 parents 21366b0 + 419751a commit 19cadaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
1 change: 1 addition & 0 deletions cmake/templates/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ breathe_doxygen_config_options = {
'DIRECTORY_GRAPH': 'NO',
'PREDEFINED': '@doxygen_definitions@',
'STRIP_FROM_PATH': hpx_source_dir,
'EXTRACT_PRIVATE': 'NO',
'ALIASES': r'namedrequirement{1}="<a href=\"https://en.cppreference.com/w/cpp/named_req/\1\">\1</a>"'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,10 @@ namespace hpx {
class condition_variable
{
private:
/// \cond NOPRIVATE
using mutex_type =
lcos::local::detail::condition_variable_data::mutex_type;
using data_type =
hpx::intrusive_ptr<lcos::local::detail::condition_variable_data>;
/// \endcond NOPRIVATE

public:
/// \brief Construct an object of type \a hpx::condition_variable.
Expand Down Expand Up @@ -501,9 +499,7 @@ namespace hpx {
}

private:
/// \cond NOPRIVATE
hpx::util::cache_aligned_data_derived<data_type> data_;
/// \endcond NOPRIVATE
};

///
Expand All @@ -523,12 +519,11 @@ namespace hpx {
class condition_variable_any
{
private:
/// \cond NOPRIVATE
using mutex_type =
lcos::local::detail::condition_variable_data::mutex_type;
using data_type =
hpx::intrusive_ptr<lcos::local::detail::condition_variable_data>;
/// \endcond NOPRIVATE

public:
///
/// \brief Constructs an object of type \a hpx::condition_variable_any
Expand Down Expand Up @@ -1246,9 +1241,7 @@ namespace hpx {
}

private:
/// \cond NOPRIVATE
hpx::util::cache_aligned_data_derived<data_type> data_;
/// \endcond NOPRIVATE
};
} // namespace hpx

Expand Down

0 comments on commit 19cadaa

Please sign in to comment.