Skip to content

Commit f49c571

Browse files
committed
Fixed type detection by exchanging unsigned template parameter by std::size_t
1 parent aefaaf8 commit f49c571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse/jsd_array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace JSON
99
{
10-
template <typename T, unsigned N>
10+
template <typename T, std::size_t N>
1111
void parse(std::array<T, N>& value, std::string const& name,
1212
PropertyTree const& object, ParsingOptions const& options = DEFAULT_PARSER_OPTIONS)
1313
{

0 commit comments

Comments
 (0)