be0c12
From 6eeaef95566e6d85e714280c412e5df347838e34 Mon Sep 17 00:00:00 2001
be0c12
From: Frantisek Sumsal <frantisek@sumsal.cz>
be0c12
Date: Thu, 2 Dec 2021 16:55:17 +0100
be0c12
Subject: [PATCH] lgtm: don't treat the custom note as a list of tags
be0c12
be0c12
Just a cosmetic change.
be0c12
be0c12
(cherry picked from commit c7d70210fa45c3210b8b1eda51bc0f6d68bd8392)
be0c12
be0c12
Related: #2017033
be0c12
---
be0c12
 .lgtm/cpp-queries/PotentiallyDangerousFunction.ql | 10 ++++++----
be0c12
 1 file changed, 6 insertions(+), 4 deletions(-)
be0c12
be0c12
diff --git a/.lgtm/cpp-queries/PotentiallyDangerousFunction.ql b/.lgtm/cpp-queries/PotentiallyDangerousFunction.ql
be0c12
index 865330430d..39e8dddd13 100644
be0c12
--- a/.lgtm/cpp-queries/PotentiallyDangerousFunction.ql
be0c12
+++ b/.lgtm/cpp-queries/PotentiallyDangerousFunction.ql
be0c12
@@ -1,15 +1,17 @@
be0c12
 /**
be0c12
+ * vi: sw=2 ts=2 et syntax=ql:
be0c12
+ *
be0c12
+ * Borrowed from
be0c12
+ * https://github.com/Semmle/ql/blob/master/cpp/ql/src/Security/CWE/CWE-676/PotentiallyDangerousFunction.ql
be0c12
+ *
be0c12
  * @name Use of potentially dangerous function
be0c12
  * @description Certain standard library functions are dangerous to call.
be0c12
+ * @id cpp/potentially-dangerous-function
be0c12
  * @kind problem
be0c12
  * @problem.severity error
be0c12
  * @precision high
be0c12
- * @id cpp/potentially-dangerous-function
be0c12
  * @tags reliability
be0c12
  *       security
be0c12
- *
be0c12
- * Borrowed from
be0c12
- * https://github.com/Semmle/ql/blob/master/cpp/ql/src/Security/CWE/CWE-676/PotentiallyDangerousFunction.ql
be0c12
  */
be0c12
 import cpp
be0c12