mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
1db9250766
This is completely based on e4412f1f59
and will allow us to convert some AK::HashMap users in the kernel.
29 lines
579 B
C++
29 lines
579 B
C++
/*
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace AK::Detail {
|
|
|
|
template<typename T, typename Container>
|
|
struct SubstituteIntrusiveContainerType {
|
|
using Type = Container;
|
|
};
|
|
|
|
template<typename T>
|
|
struct SubstituteIntrusiveContainerType<T, NonnullRefPtr<T>> {
|
|
using Type = RefPtr<T>;
|
|
};
|
|
|
|
template<typename Container, bool _IsRaw>
|
|
struct SelfReferenceIfNeeded {
|
|
Container reference = nullptr;
|
|
};
|
|
template<typename Container>
|
|
struct SelfReferenceIfNeeded<Container, true> {
|
|
};
|
|
|
|
}
|