This is the normal insert routine, used by the outside world
| 3222 | |
| 3223 | // This is the normal insert routine, used by the outside world |
| 3224 | std::pair<iterator, bool> insert(const_reference obj) |
| 3225 | { |
| 3226 | _resize_delta(1); // adding an object, grow if need be |
| 3227 | return _insert_noresize(obj); |
| 3228 | } |
| 3229 | |
| 3230 | #if !defined(SPP_NO_CXX11_RVALUE_REFERENCES) |
| 3231 | template< class P > |
no outgoing calls
no test coverage detected