summaryrefslogtreecommitdiff
path: root/Libraries/LibMarkdown/MDCodeBlock.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-12-09 17:45:40 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-12-09 17:51:21 +0100
commit6f4c380d95429ef4615f0a9f40d6fec9e1469764 (patch)
tree545bbb6260bcbf427e48e98fd6bbebb989bf0590 /Libraries/LibMarkdown/MDCodeBlock.cpp
parent1726c17d0d4325f11124e270ae1658110af606d0 (diff)
downloadserenity-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.cpp2
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("&lt;");
else if (m_code[i] == '>')