//===- llvm/ADT/ilist_base.h - Intrusive List Base --------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_ADT_ILIST_BASE_H #define LLVM_ADT_ILIST_BASE_H #include "llvm/ADT/ilist_node_base.h" #include <cassert> namespace llvm { /// Implementations of list algorithms using ilist_node_base. template <bool EnableSentinelTracking, class ParentTy> class ilist_base { … }; } // end namespace llvm #endif // LLVM_ADT_ILIST_BASE_H