AK: Suppress -Wunqualified-std-cast-call in the CLion IDE
This commit is contained in:
parent
e6871c1af7
commit
b6307f73a2
Notes:
sideshowbarker
2024-07-17 08:26:01 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/b6307f73a2
1 changed files with 5 additions and 1 deletions
|
@ -1,11 +1,15 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||||
* Copyright (c) 2018-2022, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#if defined(__clang__) || defined(__CLION_IDE__)
|
||||
# pragma clang diagnostic ignored "-Wunqualified-std-cast-call"
|
||||
#endif
|
||||
|
||||
#include <AK/StdLibExtraDetails.h>
|
||||
|
||||
#include <AK/Assertions.h>
|
||||
|
|
Loading…
Add table
Reference in a new issue