Skip to content

Commit 857827d

Browse files
committed
Change query name for RULE-6-9-2
1 parent 6b3a97d commit 857827d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/misra/src/rules/RULE-6-9-2/AvoidStandardIntegerTypeNames.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id cpp/misra/avoid-standard-integer-type-names
3-
* @name RULE-6-9-2: The names of the standard signed integer types and standard unsigned integer types should not be
3+
* @name RULE-6-9-2: The names of the standard integer types should not be used
44
* @description Using standard signed and unsigned integer type names instead of specified width
55
* types makes storage requirements unclear and implementation-dependent.
66
* @kind problem

rule_packages/cpp/BannedAPIs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
{
210210
"description": "Using standard signed and unsigned integer type names instead of specified width types makes storage requirements unclear and implementation-dependent.",
211211
"kind": "problem",
212-
"name": "The names of the standard signed integer types and standard unsigned integer types should not be",
212+
"name": "The names of the standard integer types should not be used",
213213
"precision": "very-high",
214214
"severity": "error",
215215
"short_name": "AvoidStandardIntegerTypeNames",

0 commit comments

Comments
 (0)