diff --git a/src/Utils.cpp b/src/Utils.cpp index 36406361..c43d6cbe 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -17,6 +17,7 @@ #include #include +#include #include #include #include @@ -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(' ');