Skip to content

Commit 81a5485

Browse files
committed
Fixed warning: comparison of integers of different signs in mangen.cpp
1 parent 4d25d83 commit 81a5485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mangen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ void ManCodeGenerator::writeCodeLink(CodeSymbolType,
162162
void ManCodeGenerator::codify(const QCString &str)
163163
{
164164
const int tabSize = Config_getInt(TAB_SIZE);
165-
const int stripAmount = static_cast<int>(m_stripIndentAmount);
165+
const size_t stripAmount = m_stripIndentAmount;
166166
if (!str.isEmpty())
167167
{
168168
char c;

0 commit comments

Comments
 (0)