1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:27:35 +00:00

Everywhere: Remove unnecessary AK and Detail namespace scoping

This commit is contained in:
Moustafa Raafat 2022-11-14 18:25:18 +00:00 committed by Sam Atkins
parent ae2abcebbb
commit b8f1e1bed2
10 changed files with 13 additions and 13 deletions

View file

@ -582,7 +582,7 @@ inline constexpr bool IsSpecializationOf<U<Us...>, U> = true;
template<typename T>
struct __Decay {
typedef Detail::RemoveCVReference<T> type;
typedef RemoveCVReference<T> type;
};
template<typename T>
struct __Decay<T[]> {