mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +00:00
AK: Suppress -Wunqualified-std-cast-call in the CLion IDE
This commit is contained in:
parent
e6871c1af7
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
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#if defined(__clang__) || defined(__CLION_IDE__)
|
||||||
|
# pragma clang diagnostic ignored "-Wunqualified-std-cast-call"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <AK/StdLibExtraDetails.h>
|
#include <AK/StdLibExtraDetails.h>
|
||||||
|
|
||||||
#include <AK/Assertions.h>
|
#include <AK/Assertions.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue