* include/profile/map.h (map::emplace_hint): Add missing return.

From-SVN: r193202
This commit is contained in:
Jonathan Wakely 2012-11-06 00:19:57 +00:00 committed by Jonathan Wakely
parent 8787e27c9f
commit 31828bd36a
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2012-11-06 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/profile/map.h (map::emplace_hint): Add missing return.
2012-11-05 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/profile/deque: Constrain InputIterator parameters.

View File

@ -261,6 +261,7 @@ namespace __profile
std::forward<_Args>(__args)...);
__profcxx_map_to_unordered_map_insert(this, size_before,
size() - size_before);
return __res;
}
#endif