mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
AK: Enable format string checking in Clang builds
Format string checking was disabled in Clang-based builds due to a compiler bug: https://github.com/llvm/llvm-project/issues/51182. Now that the requirement has been raised to Clang 17, that is no longer necessary. This has been tested to work correctly with Apple Clang 15.0.0 (which is the *least modern* supported compiler), as well as CLion 2024.1's bundled Clangd.
This commit is contained in:
parent
9d3b73743e
commit
637ccacce5
Notes:
sideshowbarker
2024-07-17 04:57:23 +09:00
Author: https://github.com/BertalanD Commit: https://github.com/SerenityOS/serenity/commit/637ccacce5 Pull-request: https://github.com/SerenityOS/serenity/pull/24400 Reviewed-by: https://github.com/ADKaster ✅
1 changed files with 0 additions and 8 deletions
|
@ -11,14 +11,6 @@
|
||||||
#include <AK/Array.h>
|
#include <AK/Array.h>
|
||||||
#include <AK/StringView.h>
|
#include <AK/StringView.h>
|
||||||
|
|
||||||
#ifdef ENABLE_COMPILETIME_FORMAT_CHECK
|
|
||||||
// FIXME: Seems like clang doesn't like calling 'consteval' functions inside 'consteval' functions quite the same way as GCC does,
|
|
||||||
// it seems to entirely forget that it accepted that parameters to a 'consteval' function to begin with.
|
|
||||||
# if defined(AK_COMPILER_CLANG)
|
|
||||||
# undef ENABLE_COMPILETIME_FORMAT_CHECK
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef ENABLE_COMPILETIME_FORMAT_CHECK
|
#ifdef ENABLE_COMPILETIME_FORMAT_CHECK
|
||||||
namespace AK::Format::Detail {
|
namespace AK::Format::Detail {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue