Fix vera++ rule to find expressions without space after parentheses (#3776)
Regex didn't include some characters that may occur after ')' JerryScript-DCO-1.0-Signed-off-by: Rafal Walczyna r.walczyna@samsung.com
This commit is contained in:
+1
-1
@@ -60,7 +60,7 @@ atanh (double x)
|
||||
ix = hx & 0x7fffffff;
|
||||
|
||||
/* |x| > 1 */
|
||||
if ((ix | ((unsigned int)(temp.as_int.lo | (-temp.as_int.lo)) >> 31)) > 0x3ff00000)
|
||||
if ((ix | ((unsigned int) (temp.as_int.lo | (-temp.as_int.lo)) >> 31)) > 0x3ff00000)
|
||||
{
|
||||
return NAN;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user