From f7df17a93a37f66c83c24c1a4f13cf92f9089423 Mon Sep 17 00:00:00 2001 From: Arkadiy Vertleyb Date: Wed, 2 May 2007 20:03:05 +0000 Subject: [PATCH] Merged doc fix [SVN r37564] --- doc/typeof.qbk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/typeof.qbk b/doc/typeof.qbk index 786d877..548c505 100644 --- a/doc/typeof.qbk +++ b/doc/typeof.qbk @@ -80,8 +80,8 @@ she would have to specify something like this: Not exactly elegant. To solve this problem (as well as some other problems), the C++ standard committee is considering a few additions to the standard language, such as `typeof/decltype` and `auto` (see -[@http://www.osl.iu.edu/~jajarvi/publications/papers/decltype_n1478.pdf -http://www.osl.iu.edu/~jajarvi/publications/papers/decltype_n1478.pdf]). +[@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1607.pdf +http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1607.pdf]). The `typeof` operator (or `decltype`, which is a slightly different flavor of `typeof`) allows one to determine the type of an expression at compile time. Using `typeof`, @@ -844,7 +844,7 @@ as nested classes. Instead, instantiations can be registered: [endsect] -[section:ackn Acknoledgements] +[section:ackn Acknowledgements] The idea of representing a type as multiple compile-time integers, and passing these integers across function boundaries using sizeof(),