add last backwards-compatible version

This commit is contained in:
2021-12-14 00:33:46 -07:00
parent 68b10d413b
commit b0dd3f07f3
335 changed files with 4746 additions and 19627 deletions

View File

@@ -1,5 +1,4 @@
#pragma once
#include "ref_counter.h"
namespace pfc {
//! Base class for list nodes. Implemented by list implementers.
@@ -7,7 +6,7 @@ namespace pfc {
public:
typedef _list_node<t_item> t_self;
template<typename ... arg_t> _list_node(arg_t && ... arg) : m_content( std::forward<arg_t>(arg) ...) {}
TEMPLATE_CONSTRUCTOR_FORWARD_FLOOD(_list_node,m_content)
t_item m_content;