mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
Suppress vscode llvm warnings
This commit is contained in:
parent
76e09e1952
commit
5cbb01dd1f
8
.vscode/settings.json
vendored
8
.vscode/settings.json
vendored
@ -8,5 +8,11 @@
|
|||||||
"C_Cpp.default.cppStandard": "c++20",
|
"C_Cpp.default.cppStandard": "c++20",
|
||||||
"C_Cpp.intelliSenseMemoryLimit": 16384,
|
"C_Cpp.intelliSenseMemoryLimit": 16384,
|
||||||
"editor.smoothScrolling": true,
|
"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"
|
||||||
|
]
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
#pragma once
|
#ifndef __FENNIX_KERNEL_SMART_POINTER_H__
|
||||||
|
#define __FENNIX_KERNEL_SMART_POINTER_H__
|
||||||
|
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
@ -147,3 +150,5 @@ template <class T>
|
|||||||
class weak_ptr
|
class weak_ptr
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif // !__FENNIX_KERNEL_SMART_POINTER_H__
|
||||||
|
Loading…
x
Reference in New Issue
Block a user