| 251 | } |
| 252 | |
| 253 | [[nodiscard]] inline bool isUsingInlineStorage() const noexcept |
| 254 | { |
| 255 | const TItem* inlineStorage = reinterpret_cast<const TItem*>(&m_inlineStorage); |
| 256 | return (inlineStorage == m_storage); |
| 257 | } |
| 258 | |
| 259 | template <class... Args> inline TItem* constructInline(Args&&... args) |
| 260 | { |
no outgoing calls
no test coverage detected