Skip to content

Commit

Permalink
Fixed recently introduced bug, by swapping lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
5cript committed Nov 19, 2015
1 parent f49c571 commit 82f0850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stringify/jss_array.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ namespace JSON
typename = typename std::enable_if <Internal::can_stringify<T>::value>::type >
std::ostream& stringify(std::ostream& stream, std::string const& name, std::array<T, N> const& values, StringificationOptions options = DEFAULT_OPTIONS)
{
options.ignore_name = true;
WRITE_ARRAY_START(stream);
options.ignore_name = true;
bool first = true;
for (auto const& i : values)
{
Expand Down

0 comments on commit 82f0850

Please sign in to comment.