From 6360afdcfab03b99ea4ac6f9fb3dd4b748bd0ae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 8 Apr 2012 10:47:01 +0200 Subject: [PATCH] CheckOther: Use reportInconclusiveError to report inconclusive error --- lib/checkother.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkother.cpp b/lib/checkother.cpp index 05beaba98..3b9d6b3f8 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -1876,7 +1876,7 @@ void CheckOther::checkUnsignedDivision() void CheckOther::udivError(const Token *tok, bool inconclusive) { if (inconclusive) - reportError(tok, Severity::warning, "udivError", "Division with signed and unsigned operators. The result might be wrong."); + reportInconclusiveError(tok, Severity::warning, "udivError", "Division with signed and unsigned operators. The result might be wrong."); else reportError(tok, Severity::error, "udivError", "Unsigned division. The result will be wrong."); }