diff --git a/Util/src/HelpFormatter.cpp b/Util/src/HelpFormatter.cpp index 855b32446..c51099a63 100644 --- a/Util/src/HelpFormatter.cpp +++ b/Util/src/HelpFormatter.cpp @@ -142,7 +142,7 @@ int HelpFormatter::calcIndent() const } n += 2; if (n > indent) - indent = n; + indent = static_cast(n); } return indent; }