diff --git a/src/analyzer/analyzerbase.cpp b/src/analyzer/analyzerbase.cpp index 5b9274b52..a80590e00 100644 --- a/src/analyzer/analyzerbase.cpp +++ b/src/analyzer/analyzerbase.cpp @@ -88,7 +88,7 @@ void AnalyzerBase::ChangeTimeout(const int timeout) { void AnalyzerBase::transform(Scope &scope) { QVector aux(fht_->size()); - if (static_cast(aux.size()) >= scope.size()) { + if (aux.size() >= scope.size()) { std::copy(scope.begin(), scope.end(), aux.begin()); } else {