|
2240 | 2240 | in the program~(\ref{definitions}).
|
2241 | 2241 |
|
2242 | 2242 | \pnum
|
2243 |
| -A \Cpp program may provide the definition for any of twelve |
| 2243 | +A \Cpp program may provide the definition for any of the following |
2244 | 2244 | dynamic memory allocation function signatures declared in header
|
2245 | 2245 | \tcode{<new>}~(\ref{basic.stc.dynamic}, \ref{support.dynamic}):
|
2246 | 2246 |
|
2247 | 2247 | \begin{itemize}
|
2248 | 2248 | \item
|
2249 |
| -\indextext{\idxcode{new}!\idxcode{operator}}% |
| 2249 | +\indextext{\idxcode{new}!\idxcode{operator}!replaceable}% |
2250 | 2250 | \indexlibrary{\idxcode{new}!\idxcode{operator}}%
|
2251 | 2251 | \tcode{operator new(std::size_t)}
|
2252 | 2252 | \item
|
2253 | 2253 | \tcode{operator new(std::size_t, const std::nothrow_t\&)}
|
2254 | 2254 | \item
|
2255 |
| -\indextext{\idxcode{new}!\idxcode{operator}}% |
2256 |
| -\indexlibrary{\idxcode{new}!\idxcode{operator}}% |
2257 | 2255 | \tcode{operator new[](std::size_t)}
|
2258 | 2256 | \item
|
2259 | 2257 | \tcode{operator new[](std::size_t, const std::nothrow_t\&)}
|
2260 | 2258 | \item
|
2261 |
| -\indextext{\idxcode{delete}!\idxcode{operator}}% |
| 2259 | +\indextext{\idxcode{delete}!\idxcode{operator}!replaceable}% |
2262 | 2260 | \indexlibrary{\idxcode{delete}!\idxcode{operator}}%
|
2263 | 2261 | \tcode{operator delete(void*)}
|
2264 | 2262 | \item
|
2265 | 2263 | \tcode{operator delete(void*, const std::nothrow_t\&)}
|
2266 | 2264 | \item
|
2267 |
| -\indextext{\idxcode{delete}!\idxcode{operator}}% |
2268 |
| -\indexlibrary{\idxcode{delete}!\idxcode{operator}}% |
| 2265 | +\tcode{operator delete(void*, std::size_t)} |
| 2266 | +\item |
2269 | 2267 | \tcode{operator delete[](void*)}
|
2270 | 2268 | \item
|
2271 | 2269 | \tcode{operator delete[](void*, const std::nothrow_t\&)}
|
2272 | 2270 | \item
|
2273 |
| -\tcode{operator delete(void*, std::size_t)} |
2274 |
| -\item |
2275 |
| -\tcode{operator delete(void*, std::size_t, const std::nothrow_t\&)} |
2276 |
| -\item |
2277 | 2271 | \tcode{operator delete[](void*, std::size_t)}
|
2278 |
| -\item |
2279 |
| -\tcode{operator delete[](void*, std::size_t, const std::nothrow_t\&)} |
2280 | 2272 | \end{itemize}
|
2281 | 2273 |
|
2282 | 2274 | \pnum
|
|
0 commit comments