From 9c45e6d47d721ce48e19fe54479a9897e992a8b9 Mon Sep 17 00:00:00 2001 From: Zachary Blair Date: Mon, 10 Jun 2013 23:11:44 -0700 Subject: [PATCH] Fixed #4173: Elaborated on the verbose error message --- lib/checkother.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/checkother.cpp b/lib/checkother.cpp index 0f9378680..ae210f7d8 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -2133,6 +2133,7 @@ void CheckOther::nanInArithmeticExpressionError(const Token *tok) { reportError(tok, Severity::style, "nanInArithmeticExpression", "Using NaN/Inf in a computation.\n" + "Using NaN/Inf in a computation. " "Although nothing bad really happens, it is suspicious."); }