Function make_table
Synopsis
#include <include/cpptoml.h>
std::shared_ptr< table > make_table()
Description
No description yet.
Source
Lines 1691-1702 in include/cpptoml.h. Line 403 in include/cpptoml.h.
std::shared_ptr<table> make_table()
{
struct make_shared_enabler : public table
{
make_shared_enabler()
{
// nothing
}
};
return std::make_shared<make_shared_enabler>();
}