Skip to content

Commit 2578910

Browse files
committed
Fix formatting of query
1 parent f6f6f96 commit 2578910

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cpp/misra/src/rules/RULE-21-6-2/DynamicMemoryManagedManually.ql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ where
9595
/* ===== 2. The expression takes address of the dynamic memory management functions. ===== */
9696
expr = dynamicMemoryManagementFunction.getAnAccess() and
9797
message =
98-
"Taking the address of banned `" +
99-
dynamicMemoryManagementFunction.getQualifiedName() + "`."
98+
"Taking the address of banned `" + dynamicMemoryManagementFunction.getQualifiedName() + "`."
10099
)
101100
select expr, message

0 commit comments

Comments
 (0)