future (shared_future): Adjust doxygen comment.

2009-06-24  Jonathan Wakely  <jwakely.gcc@gmail.com>

	* include/std/future (shared_future): Adjust doxygen comment.

From-SVN: r148895
This commit is contained in:
Jonathan Wakely 2009-06-24 07:13:17 +00:00 committed by Jonathan Wakely
parent 27f41cfea5
commit c8ee2bfd79
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-06-24 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/std/future (shared_future): Adjust doxygen comment.
2009-06-24 Jonathan Wakely <jwakely.gcc@gmail.com>
PR libstdc++/40297

View File

@ -459,7 +459,7 @@ namespace std
unique_future(const _State_ptr& __state) : _Base_type(__state) { }
};
/// primary template for unique_future
/// primary template for shared_future
template<typename _Result>
class shared_future : public _Future_impl<_Result>
{