diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-09 17:45:40 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-09 17:51:21 +0100 |
commit | 6f4c380d95429ef4615f0a9f40d6fec9e1469764 (patch) | |
tree | 545bbb6260bcbf427e48e98fd6bbebb989bf0590 /Libraries/LibMarkdown/MDCodeBlock.cpp | |
parent | 1726c17d0d4325f11124e270ae1658110af606d0 (diff) | |
download | serenity-6f4c380d95429ef4615f0a9f40d6fec9e1469764.zip |
AK: Use size_t for the length of strings
Using int was a mistake. This patch changes String, StringImpl,
StringView and StringBuilder to use size_t instead of int for lengths.
Obviously a lot of code needs to change as a result of this.
Diffstat (limited to 'Libraries/LibMarkdown/MDCodeBlock.cpp')
-rw-r--r-- | Libraries/LibMarkdown/MDCodeBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibMarkdown/MDCodeBlock.cpp b/Libraries/LibMarkdown/MDCodeBlock.cpp index 61d518e177..cf5c01fdad 100644 --- a/Libraries/LibMarkdown/MDCodeBlock.cpp +++ b/Libraries/LibMarkdown/MDCodeBlock.cpp @@ -33,7 +33,7 @@ String MDCodeBlock::render_to_html() const builder.appendf("<code style=\"white-space: pre;\" class=\"%s\">", style_language.characters()); // TODO: This should also be done in other places. - for (int i = 0; i < m_code.length(); i++) + for (size_t i = 0; i < m_code.length(); i++) if (m_code[i] == '<') builder.append("<"); else if (m_code[i] == '>') |