Skip to content

Commit 0439326

Browse files
committed
Closes #1579
1 parent 945b34d commit 0439326

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CppCoreGuidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ Interface rule summary:
12241224
* [I.13: Do not pass an array as a single pointer](#Ri-array)
12251225
* [I.22: Avoid complex initialization of global objects](#Ri-global-init)
12261226
* [I.23: Keep the number of function arguments low](#Ri-nargs)
1227-
* [I.24: Avoid adjacent unrelated parameters of the same type](#Ri-unrelated)
1227+
* [I.24: Avoid adjacent parameters of the same type when changing the argument order would change meaning](#Ri-unrelated)
12281228
* [I.25: Prefer abstract classes as interfaces to class hierarchies](#Ri-abstract)
12291229
* [I.26: If you want a cross-compiler ABI, use a C-style subset](#Ri-abi)
12301230
* [I.27: For stable library ABI, consider the Pimpl idiom](#Ri-pimpl)
@@ -2100,7 +2100,7 @@ There are functions that are best expressed with four individual parameters, but
21002100
* Warn when a function declares two iterators (including pointers) of the same type instead of a range or a view.
21012101
* (Not enforceable) This is a philosophical guideline that is infeasible to check directly.
21022102

2103-
### <a name="Ri-unrelated"></a>I.24: Avoid adjacent unrelated parameters of the same type
2103+
### <a name="Ri-unrelated"></a>I.24: Avoid adjacent parameters of the same type when changing the argument order would change meaning
21042104

21052105
##### Reason
21062106

0 commit comments

Comments
 (0)