Skip to content

Commit

Permalink
build(doxy): don't extract private members
Browse files Browse the repository at this point in the history
  • Loading branch information
bhumitattarde committed Sep 26, 2022
1 parent 0e58243 commit 1859c03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
3 changes: 2 additions & 1 deletion cmake/templates/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ breathe_doxygen_config_options = {
'MACRO_EXPANSION': 'YES',
'DIRECTORY_GRAPH': 'NO',
'PREDEFINED': '@doxygen_definitions@',
'STRIP_FROM_PATH': hpx_source_dir
'STRIP_FROM_PATH': hpx_source_dir,
'EXTRACT_PRIVATE': 'NO'
}

numfig = True
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,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 @@ -498,9 +496,7 @@ namespace hpx {
}

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

///
Expand All @@ -518,12 +514,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 @@ -1237,9 +1232,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 1859c03

Please sign in to comment.