Function make_consumer
Synopsis
#include <include/cpptoml.h>
template <class OnError>
consumer< OnError > make_consumer(std::string::iterator &it, const std::string::iterator &end, OnError &&on_error)
Description
No description yet.
Source
Lines 1829-1835 in include/cpptoml.h.
template <class OnError>
consumer<OnError> make_consumer(std::string::iterator& it,
const std::string::iterator& end,
OnError&& on_error)
{
return consumer<OnError>(it, end, std::forward<OnError>(on_error));
}