// SPDX-License-Identifier: BSD-2-Clause // author: Max Kellermann #ifndef RECURSIVE_MAP_HXX #define RECURSIVE_MAP_HXX #include /** * A #std::map which contains instances of itself. */ template class RecursiveMap : public std::map> {}; #endif