aboutsummaryrefslogtreecommitdiff
path: root/documentation/cxx/hybrid/guide/index.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/cxx/hybrid/guide/index.xhtml')
-rw-r--r--documentation/cxx/hybrid/guide/index.xhtml11
1 files changed, 9 insertions, 2 deletions
diff --git a/documentation/cxx/hybrid/guide/index.xhtml b/documentation/cxx/hybrid/guide/index.xhtml
index 9a95473..f9ffccb 100644
--- a/documentation/cxx/hybrid/guide/index.xhtml
+++ b/documentation/cxx/hybrid/guide/index.xhtml
@@ -2008,12 +2008,16 @@ public:
void
reserve (size_t);
+
+ void
+ assign (const T* src, size_t n);
};
</pre>
<p>When C++ exceptions are disabled, the signatures of the
- <code>push_back()</code>, <code>insert()</code>, and
- <code>reserve()</code> functions change as follows:</p>
+ <code>push_back()</code>, <code>insert()</code>,
+ <code>reserve()</code>, and <code>assign()</code> functions
+ change as follows:</p>
<pre class="c++">
template &lt;typename T>
@@ -2040,6 +2044,9 @@ public:
error
reserve (size_t);
+
+ error
+ assign (const T* src, size_t n);
};
</pre>