Add an element to the end of the vector
| 189 | |
| 190 | // Add an element to the end of the vector |
| 191 | void push_back(const T &value) FL_NOEXCEPT { |
| 192 | if (current_size < N) { |
| 193 | void *mem = &memory()[current_size]; |
| 194 | new (mem) T(value); |
| 195 | ++current_size; |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | // Move version of push_back |
| 200 | void push_back(T &&value) FL_NOEXCEPT { |
no test coverage detected