File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This check implements detection of local variables which could be declared as
8
8
coding guidelines, such as:
9
9
`ES.25 <https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es25-declare-an-object-const-or-constexpr-unless-you-want-to-modify-its-value-later-on >`_
10
10
from the C++ Core Guidelines and `AUTOSAR C++14 Rule A7-1-1 (6.7.1 Specifiers)
11
- <https://www.autosar.org/fileadmin/user_upload/ standards/adaptive/17-03 /AUTOSAR_RS_CPP14Guidelines.pdf> `_.
11
+ <https://www.autosar.org/fileadmin/standards/R22-11/AP /AUTOSAR_RS_CPP14Guidelines.pdf> `_.
12
12
13
13
Please note that this check's analysis is type-based only. Variables that are not modified
14
14
but used to create a non-const handle that might escape the scope are not diagnosed
Original file line number Diff line number Diff line change @@ -13,3 +13,6 @@ types and definitions with good return type but wrong ``return`` statements.
13
13
type (e.g. ``int ``).
14
14
* Private and deleted operators are ignored.
15
15
* The operator must always return ``*this ``.
16
+
17
+ This check implements `AUTOSAR C++14 Rule A13-2-1
18
+ <https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-constref> `_.
You can’t perform that action at this time.
0 commit comments