Skip to content

Commit

Permalink
馃洜 Slight include and ordering fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhD committed Sep 11, 2022
1 parent e8dce10 commit 3cc3864
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/ztd/text/encoding_scheme.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@

#include <ztd/text/version.hpp>

#include <ztd/text/basic_encoding_scheme.hpp>
#include <ztd/text/utf16.hpp>
#include <ztd/text/utf32.hpp>
#include <ztd/text/basic_encoding_scheme.hpp>

#include <ztd/prologue.hpp>

Expand Down
4 changes: 2 additions & 2 deletions include/ztd/text/punycode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ namespace ztd { namespace text {
//////
/// @brief The punycode encoding, as envisioned by RFC 3492 and (potentially) influenced by IDNA (RFC 5890).
///
/// @tparam _IsIdna Whether or not this punycode type looks for IDNA prefixes and obeys its encoding rules.
/// @tparam _CodeUnit The code unit type for the encoded ASCII text.
/// @tparam _CodePoint The code point type for the Unicode Code Point decoded text.
/// @tparam _IsIdna Whether or not this punycode type looks for IDNA prefixes and obeys its encoding rules.
///
/// @remarks See https://datatracker.ietf.org/doc/html/rfc5890 and https://datatracker.ietf.org/doc/html/rfc3492
/// @remarks See https://datatracker.ietf.org/doc/html/rfc5890 and https://datatracker.ietf.org/doc/html/rfc3492.
//////
template <idna _IsIdna, typename _CodeUnit = char, typename _CodePoint = unicode_code_point>
class basic_any_punycode {
Expand Down

0 comments on commit 3cc3864

Please sign in to comment.