mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
AK: Make declaration of std::move and std::forward optional
This introduces a new define AK_DONT_REPLACE_STD that disables our own implementation of std::move and std::forward. Some ports include both STL and AK headers which causes conflicts when trying to resolve those functions. The port can define AK_DONT_REPLACE_STD before including Serenity headers in that case.
This commit is contained in:
parent
f2ba44cbdf
commit
a595345e7c
Notes:
sideshowbarker
2024-07-18 04:46:38 +09:00
Author: https://github.com/sunverwerth Commit: https://github.com/SerenityOS/serenity/commit/a595345e7c1 Pull-request: https://github.com/SerenityOS/serenity/pull/9808
1 changed files with 2 additions and 0 deletions
|
@ -20,6 +20,7 @@ constexpr auto round_up_to_power_of_two(T value, U power_of_two) requires(IsInte
|
|||
// Disabling formatting for that doesn't help either.
|
||||
//
|
||||
// clang-format off
|
||||
#ifndef AK_DONT_REPLACE_STD
|
||||
namespace std {
|
||||
|
||||
// NOTE: These are in the "std" namespace since some compilers and static analyzers rely on it.
|
||||
|
@ -44,6 +45,7 @@ constexpr T&& move(T& arg)
|
|||
}
|
||||
|
||||
}
|
||||
#endif
|
||||
// clang-format on
|
||||
|
||||
using std::forward;
|
||||
|
|
Loading…
Reference in a new issue