aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangformat/clangformatfile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/clangformat/clangformatfile.cpp')
-rw-r--r--src/plugins/clangformat/clangformatfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/clangformat/clangformatfile.cpp b/src/plugins/clangformat/clangformatfile.cpp
index 8e532ea797..c9955ef2a3 100644
--- a/src/plugins/clangformat/clangformatfile.cpp
+++ b/src/plugins/clangformat/clangformatfile.cpp
@@ -105,7 +105,7 @@ void ClangFormatFile::saveNewFormat()
// workaround: configurationAsText() add comment "# " before BasedOnStyle line
const int pos = style.find("# BasedOnStyle");
- if (pos < style.size())
+ if (pos < int(style.size()))
style.erase(pos, 2);
m_filePath.writeFileContents(QByteArray::fromStdString(style));
}