Fixed typo in typeof docs

[SVN r33523]
This commit is contained in:
Peder Holt
2006-03-29 17:30:08 +00:00
parent 878e7ab5a5
commit d061288eb7

View File

@ -590,7 +590,7 @@ which takes care of `typename` inside the `typeof` expression.
template<typename A, typename B>
struct result_of_conditional
{
BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested,true?A():B());
BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested,true?A():B())
typedef typename nested::type type;
};