C++: Fixes to avoid confusing autoformat

These issues were found by Geoffrey in PR review.
This commit is contained in:
Jonas Jensen
2019-09-04 14:01:47 +02:00
parent b14b65ecf0
commit 95f53639b1
21 changed files with 128 additions and 93 deletions

View File

@@ -1,7 +1,7 @@
/**
* @name Unbounded loop
* @description All loops should have a fixed upper bound; the counter should also be incremented along all paths within the loop.
This check excludes loops that are meant to be nonterminating (like schedulers).
* This check excludes loops that are meant to be nonterminating (like schedulers).
* @kind problem
* @id cpp/jpl-c/loop-bounds
* @problem.severity warning