| 257 | } |
| 258 | |
| 259 | template <class... Args> inline TItem* constructInline(Args&&... args) |
| 260 | { |
| 261 | TItem* inlineItems = reinterpret_cast<TItem*>(&m_inlineStorage); |
| 262 | for (unsigned i = 0; i < kNumInlineItems; i++) |
| 263 | { |
| 264 | construct<TItem>((inlineItems + i), std::forward<Args>(args)...); |
| 265 | } |
| 266 | return inlineItems; |
| 267 | } |
| 268 | |
| 269 | inline TItem* moveInline(TItem* otherInlineItems) |
| 270 | { |
no outgoing calls
no test coverage detected