mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
31 lines
610 B
C++
31 lines
610 B
C++
/*
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
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> {
|
|
};
|
|
|
|
}
|