|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r48747 - sandbox/committee/concepts/wording
From: dgregor_at_[hidden]
Date: 2008-09-11 16:32:07
Author: dgregor
Date: 2008-09-11 16:32:06 EDT (Thu, 11 Sep 2008)
New Revision: 48747
URL: http://svn.boost.org/trac/boost/changeset/48747
Log:
Fix typo
Text files modified:
sandbox/committee/concepts/wording/wording.tex | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: sandbox/committee/concepts/wording/wording.tex
==============================================================================
--- sandbox/committee/concepts/wording/wording.tex (original)
+++ sandbox/committee/concepts/wording/wording.tex 2008-09-11 16:32:06 EDT (Thu, 11 Sep 2008)
@@ -1860,7 +1860,7 @@
\addedConcepts{An implicitly-declared copy assignment operator for
class \mbox{\tcode{X}} is deleted if \mbox{\tcode{X}} has:}
\begin{itemize}
-\additemConcepts{a variant member with a non-trivial copy constructor and
+\additemConcepts{a variant member with a non-trivial copy assignment operator and
\mbox{\tcode{X}} is a union-like class,}
\additemConcepts{a non-static data member of \mbox{\tcode{const}} non-class
type (or array thereof), or}
@@ -5222,7 +5222,7 @@
requires OutputStreamable<T> && OutputStreamable<Rest>...
void print(const T& t, const Rest&... rest) {
std::cout << t;
- print(rest);
+ print(rest...);
}
template<typename T>
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk