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 5d6e478 commit db8d50c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/nlohmann/traverse_value.hh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace tao
break;
case Value::value_t::object:
handler.begin_object();
for( Value::const_iterator it = v.begin(); it != v.end(); ++it ) {
for( typename Value::const_iterator it = v.begin(); it != v.end(); ++it ) {
handler.key( it.key() );
tao::json::nlohmann::traverse_value( it.value(), handler );
handler.member();
Expand Down

0 comments on commit db8d50c

Please sign in to comment.