fix size type

This commit is contained in:
LordMZTE 2021-03-27 12:47:18 +01:00
parent 44bd3376ce
commit 947b8c0291
1 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@
#include <QTextDocument>
#include <QXmlStreamReader>
#include <bits/c++config.h>
#include <cmath>
#include <fmt/core.h>
#include <variant>
@ -509,7 +510,7 @@ utils::markdownToHtml(const QString &text, bool rainbowify)
std::string nodeText(tmp_buf);
// create buffer to append rainbow text to
std::string buf;
for (int i = 0; i < nodeText.length(); i++) {
for (std::size_t i = 0; i < nodeText.length(); i++) {
// Don't rainbowify spaces
if (nodeText.at(i) == ' ') {
buf.push_back(' ');