Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
reyoung committed Oct 3, 2017
1 parent b280613 commit 703321e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddle/framework/op_desc.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class OpDescBind {
std::vector<typename MapType::key_type> ret_val;
ret_val.reserve(map.size());
std::transform(
map.begin(), map.end(), ret_val.begin(),
map.begin(), map.end(), std::back_inserter(ret_val),
[](const typename MapType::value_type &pair) { return pair.first; });
return ret_val;
}
Expand Down

0 comments on commit 703321e

Please sign in to comment.