From 041f9cfd248deceadcc0d75a4a47cdaee28fe776 Mon Sep 17 00:00:00 2001 From: Peder Holt Date: Wed, 29 Mar 2006 17:36:53 +0000 Subject: [PATCH] Merged typo in typeof doc from HEAD [SVN r33525] --- doc/typeof.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/typeof.qbk b/doc/typeof.qbk index f0e5778..4ae21f1 100644 --- a/doc/typeof.qbk +++ b/doc/typeof.qbk @@ -590,7 +590,7 @@ which takes care of `typename` inside the `typeof` expression. template 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; };