1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 23:14:54 +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:
Stephan Unverwerth 2021-09-04 14:20:27 +02:00 committed by Andreas Kling
parent f2ba44cbdf
commit a595345e7c

View File

@ -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;