| 726 | */ |
| 727 | |
| 728 | __inline_call size_type push_tail ( // _def-construct |
| 729 | ) |
| 730 | {/* _def construct object and increment count */ |
| 731 | size_type result = count(); |
| 732 | size_type offset = count()>>_pwr2; |
| 733 | |
| 734 | if (result == alloc()) |
| 735 | inc_alloc(result + 1); |
| 736 | |
| 737 | this-> _block[offset].push_tail(); |
| 738 | this-> _count += + 1 ; |
| 739 | |
| 740 | return result ; |
| 741 | } |
| 742 | |
| 743 | __inline_call size_type push_tail ( // copy-construct |
| 744 | data_type const&_data |
nothing calls this directly
no outgoing calls
no test coverage detected