| 681 | template <typename T> |
| 682 | RAPIDJSON_DISABLEIF_RETURN((internal::OrExpr<internal::IsPointer<T>, internal::IsGenericValue<T> >), (ValueType&)) |
| 683 | GetWithDefault(ValueType& root, T defaultValue, typename ValueType::AllocatorType& allocator) const { |
| 684 | return GetWithDefault(root, ValueType(defaultValue).Move(), allocator); |
| 685 | } |
| 686 | |
| 687 | //! Query a value in a document with default value. |
| 688 | template <typename stackAllocator> |
no test coverage detected