Skip to content

Commit

Permalink
Add missing typename keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Sep 16, 2016
1 parent db8d50c commit a5d0d95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/nlohmann/to_value.hh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace tao

void member()
{
stack_.back().push_back( Value::object_t::value_type( std::move( keys_.back() ), std::move( value ) ) );
stack_.back().push_back( typename Value::object_t::value_type( std::move( keys_.back() ), std::move( value ) ) );
keys_.pop_back();
}

Expand Down

0 comments on commit a5d0d95

Please sign in to comment.