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