Skip to content

Commit

Permalink
Fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Jun 14, 2024
1 parent 77015f2 commit 868c86f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/doxygen/doxygen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ FILE_PATTERNS = *.dox *.h *.md
RECURSIVE = YES # Default: NO
EXCLUDE =
EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS = __*.*
EXCLUDE_PATTERNS =
EXCLUDE_SYMBOLS =
EXAMPLE_PATH = ../../examples
EXAMPLE_PATTERNS = *
Expand Down
2 changes: 1 addition & 1 deletion src/xtd.core/include/xtd/internal/__date_time_formatter.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "__format_exception.h"
#include "__sprintf.h"

/// @cond
#if defined(_WIN32)
inline struct tm* __localtime_s(const time_t* timer, struct tm* buf) noexcept {
localtime_s(buf, timer);
Expand All @@ -22,7 +23,6 @@ inline struct tm* __localtime_s(const time_t* timer, struct tm* buf) noexcept {
}
#endif

/// @cond
template<typename char_t>
inline std::basic_string<char_t> __to_string(const char_t* fmt, const std::tm& value, const std::locale& loc) {
std::basic_stringstream<char_t> result;
Expand Down
4 changes: 4 additions & 0 deletions src/xtd.core/include/xtd/internal/__enum_introspection.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@
#if !defined(__XTD_CORE_INTERNAL__)
#error "Do not include this file: Internal use only"
#endif
/// @endcond

#include "../typeof.h"
#include "../types.h"
#include "../ustring.h"

/// @cond
#if defined(__XTD_DO_NOT_USE_ENUMERATION_INTROSPECTION__)
#define __enum_introspection__(namespace_name, enum_t, base_t, ...)
#else
#include <string_view>
/// @endcond

/// @cond
namespace __enumeration_introspection {
constexpr std::string_view trim(std::string_view view) {
size_t start = view.find_first_not_of(' ');
Expand Down
1 change: 0 additions & 1 deletion src/xtd.core/include/xtd/internal/__format_information.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ struct __format_information {
std::basic_string<char_t> alignment;
std::basic_string<char_t> format;
};

/// @endcond
Original file line number Diff line number Diff line change
Expand Up @@ -206,5 +206,4 @@ inline std::basic_ostream<char_t, char_traits_t>& operator <<(std::basic_ostream
if (it == __any_stringer__.cend()) return os << "(unregistered)";
return os << it->second(value);
}

/// @endcond
1 change: 0 additions & 1 deletion src/xtd.core/include/xtd/internal/__parse.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,4 +233,3 @@ inline value_t __parse_unsigned_number(const std::basic_string<char_t>& s, xtd::
template<typename value_t>
value_t __parse_enum(const std::string& str);
/// @endcond

0 comments on commit 868c86f

Please sign in to comment.