Skip to content

Commit 38b98ec

Browse files
committed
Super minor formatting
1 parent 45aedd7 commit 38b98ec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/misra/src/rules/RULE-8-7-1/PointerArithmeticFormsAnInvalidPointer.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,9 @@ newtype TPointerFormation =
232232
* int *third_pos = &arr[2]; // current offset is 2.
233233
* int *one_beyond_last = third_pos + 2; // current offset is 4 (which is just one beyond the last).
234234
* ```
235-
*
235+
*
236236
* We want `&arr[2]` to be recognized as an offset of 2 applied to the base pointer of `arr`.
237-
*
237+
*
238238
* c.f. `TAddressOfIndex` branch of `PointerFormation`.
239239
*/
240240

0 commit comments

Comments
 (0)