Skip to content

Commit 82f0850

Browse files
committed
Fixed recently introduced bug, by swapping lines.
1 parent f49c571 commit 82f0850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stringify/jss_array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ namespace JSON
1212
typename = typename std::enable_if <Internal::can_stringify<T>::value>::type >
1313
std::ostream& stringify(std::ostream& stream, std::string const& name, std::array<T, N> const& values, StringificationOptions options = DEFAULT_OPTIONS)
1414
{
15-
options.ignore_name = true;
1615
WRITE_ARRAY_START(stream);
16+
options.ignore_name = true;
1717
bool first = true;
1818
for (auto const& i : values)
1919
{

0 commit comments

Comments
 (0)