| 1627 | template <typename T> |
| 1628 | RAPIDJSON_DISABLEIF_RETURN((internal::OrExpr<internal::IsPointer<T>, internal::IsGenericValue<T> >), (GenericValue&)) |
| 1629 | PushBack(T value, Allocator& allocator) { |
| 1630 | GenericValue v(value); |
| 1631 | return PushBack(v, allocator); |
| 1632 | } |
| 1633 | |
| 1634 | //! Remove the last element in the array. |
| 1635 | /*! |
no outgoing calls
no test coverage detected