Merged typo in typeof doc from HEAD

[SVN r33525]
This commit is contained in:
Peder Holt 2006-03-29 17:36:53 +00:00
parent c17f725e5f
commit 041f9cfd24

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;
};