Suppress vscode llvm warnings

This commit is contained in:
Alex 2022-10-28 07:46:17 +03:00
parent 76e09e1952
commit 5cbb01dd1f
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
2 changed files with 13 additions and 2 deletions

View File

@ -8,5 +8,11 @@
"C_Cpp.default.cppStandard": "c++20",
"C_Cpp.intelliSenseMemoryLimit": 16384,
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": true
"editor.cursorSmoothCaretAnimation": true,
"C_Cpp.codeAnalysis.clangTidy.checks.disabled": [
"clang-analyzer-security.insecureAPI.strcpy",
"clang-diagnostic-unknown-warning-option",
"clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling",
"clang-diagnostic-implicit-exception-spec-mismatch"
]
}

View File

@ -1,4 +1,7 @@
#pragma once
#ifndef __FENNIX_KERNEL_SMART_POINTER_H__
#define __FENNIX_KERNEL_SMART_POINTER_H__
#include <types.h>
#include <debug.h>
@ -147,3 +150,5 @@ template <class T>
class weak_ptr
{
};
#endif // !__FENNIX_KERNEL_SMART_POINTER_H__