Skip to content

Commit

Permalink
fix: Escape member names
Browse files Browse the repository at this point in the history
  • Loading branch information
lotem committed Apr 7, 2024
1 parent 716b96b commit 9241603
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/WeaselUtility.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ inline std::string wstring_to_string(const std::wstring& wstr,

template <typename CharT>
struct Escape {
static constexpr CharT escape_char;
static constexpr CharT escape;
static constexpr CharT linefeed;
static constexpr CharT tab;
static constexpr CharT linefeed_escape_char;
static constexpr CharT tab_escape_char;
static constexpr CharT linefeed_escape;
static constexpr CharT tab_escape;
};

template <>
Expand Down

0 comments on commit 9241603

Please sign in to comment.