Skip to content

Commit 9c93262

Browse files
committed
hide internal
1 parent 6f8f738 commit 9c93262

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ EXCLUDE_PATTERNS = *.mk
10281028
# wildcard * is used, a substring. Examples: ANamespace, AClass,
10291029
# ANamespace::AClass, ANamespace::*Test
10301030

1031-
EXCLUDE_SYMBOLS = std doctest doctest_detail_test_suite_ns
1031+
EXCLUDE_SYMBOLS = std doctest doctest_detail_test_suite_ns detail *::detail
10321032

10331033
# The EXAMPLE_PATH tag can be used to specify one or more files or directories
10341034
# that contain example code fragments that are included (see the \include

include/gl/conversion.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,8 @@ using swap_impl_tag_t = typename swap_impl_tag<GT, NewImplTag>::type;
4848

4949
} // namespace traits
5050

51-
/// @internal
5251
namespace detail {
5352

54-
/// @internal
5553
template <traits::c_graph_impl_tag TargetImplTag, traits::c_graph_impl_tag SourceImplTag>
5654
struct to_impl {
5755
template <typename TargetGraph, typename SourceGraph>

include/gl/graph.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ template <traits::c_graph_impl_tag TargetImplTag, traits::c_graph Graph>
6262

6363
namespace detail {
6464

65-
/// @internal
6665
template <traits::c_graph_impl_tag TargetImplTag, traits::c_graph_impl_tag SourceImplTag>
6766
struct to_impl;
6867

mkdocs.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,16 @@ plugins:
7070
projects:
7171
cpp-gl:
7272
src-dirs: "include docs/groups.dox"
73-
full-doc: True
73+
full-doc: true
7474
doxy-cfg:
7575
PROJECT_NAME: "CPP-GL"
76-
EXTRACT_ALL: False
77-
HIDE_UNDOC_MEMBERS: True
78-
HIDE_UNDOC_CLASSES: True
79-
EXTRACT_STATIC: False
76+
EXTRACT_ALL: "NO"
77+
HIDE_UNDOC_MEMBERS: "YES"
78+
HIDE_UNDOC_CLASSES: "YES"
79+
EXTRACT_STATIC: "NO"
80+
EXTRACT_PRIVATE: "NO"
81+
INTERNAL_DOCS: "NO"
82+
EXCLUDE_SYMBOLS: "std doctest doctest_detail_test_suite_ns detail *::detail"
8083

8184
extra_javascript:
8285
- scripts/mathjax.js

0 commit comments

Comments
 (0)