Added missing template parameter.
This commit is contained in:
parent
933a36d992
commit
d35140d278
@ -21,7 +21,7 @@ concept parse_result_type = requires
|
||||
};
|
||||
|
||||
template<typename T, typename TParseContext>
|
||||
concept parseable_by_type = parse_result_type &&
|
||||
concept parseable_by_type = parse_result_type<T> &&
|
||||
requires(const T& object, TParseContext& parseContext)
|
||||
{
|
||||
{ T::parseFormat(parseContext) } -> std::convertible_to<std::pair<typename TParseContext::iterator, typename T::parse_result_t>>;
|
||||
|
Loading…
x
Reference in New Issue
Block a user