Skip to content

Commit 868c86f

Browse files
committed
Fix documentation
1 parent 77015f2 commit 868c86f

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

docs/doxygen/doxygen.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ FILE_PATTERNS = *.dox *.h *.md
116116
RECURSIVE = YES # Default: NO
117117
EXCLUDE =
118118
EXCLUDE_SYMLINKS = NO
119-
EXCLUDE_PATTERNS = __*.*
119+
EXCLUDE_PATTERNS =
120120
EXCLUDE_SYMBOLS =
121121
EXAMPLE_PATH = ../../examples
122122
EXAMPLE_PATTERNS = *

src/xtd.core/include/xtd/internal/__date_time_formatter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "__format_exception.h"
1212
#include "__sprintf.h"
1313

14+
/// @cond
1415
#if defined(_WIN32)
1516
inline struct tm* __localtime_s(const time_t* timer, struct tm* buf) noexcept {
1617
localtime_s(buf, timer);
@@ -22,7 +23,6 @@ inline struct tm* __localtime_s(const time_t* timer, struct tm* buf) noexcept {
2223
}
2324
#endif
2425

25-
/// @cond
2626
template<typename char_t>
2727
inline std::basic_string<char_t> __to_string(const char_t* fmt, const std::tm& value, const std::locale& loc) {
2828
std::basic_stringstream<char_t> result;

src/xtd.core/include/xtd/internal/__enum_introspection.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,20 @@
33
#if !defined(__XTD_CORE_INTERNAL__)
44
#error "Do not include this file: Internal use only"
55
#endif
6+
/// @endcond
67

78
#include "../typeof.h"
89
#include "../types.h"
910
#include "../ustring.h"
1011

12+
/// @cond
1113
#if defined(__XTD_DO_NOT_USE_ENUMERATION_INTROSPECTION__)
1214
#define __enum_introspection__(namespace_name, enum_t, base_t, ...)
1315
#else
1416
#include <string_view>
17+
/// @endcond
1518

19+
/// @cond
1620
namespace __enumeration_introspection {
1721
constexpr std::string_view trim(std::string_view view) {
1822
size_t start = view.find_first_not_of(' ');

src/xtd.core/include/xtd/internal/__format_information.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ struct __format_information {
1717
std::basic_string<char_t> alignment;
1818
std::basic_string<char_t> format;
1919
};
20-
2120
/// @endcond

src/xtd.core/include/xtd/internal/__generic_stream_output.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,5 +206,4 @@ inline std::basic_ostream<char_t, char_traits_t>& operator <<(std::basic_ostream
206206
if (it == __any_stringer__.cend()) return os << "(unregistered)";
207207
return os << it->second(value);
208208
}
209-
210209
/// @endcond

src/xtd.core/include/xtd/internal/__parse.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,4 +233,3 @@ inline value_t __parse_unsigned_number(const std::basic_string<char_t>& s, xtd::
233233
template<typename value_t>
234234
value_t __parse_enum(const std::string& str);
235235
/// @endcond
236-

0 commit comments

Comments
 (0)