Skip to content

Commit

Permalink
Change how raw strings are found for wide line check
Browse files Browse the repository at this point in the history
Quote at start will be cleared at this stage now.
  • Loading branch information
Blake-Madden committed Jan 7, 2025
1 parent a0f8347 commit bd98faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp_i18n_review.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ namespace i18n_check
std::next(m_file_start, static_cast<ptrdiff_t>(previousNewLine)),
currentLineLength
};
if (currentLine.find(L"R\"") == std::wstring::npos &&
if (currentLine.find(L"LR") == std::wstring::npos &&
currentLine.find(L'|') == std::wstring::npos)
{
m_wide_lines.emplace_back(
Expand Down

0 comments on commit bd98faa

Please sign in to comment.