| 1259 | |
| 1260 | |
| 1261 | void |
| 1262 | ValueIteratorBase::decrement() |
| 1263 | { |
| 1264 | #ifndef JSON_VALUE_USE_INTERNAL_MAP |
| 1265 | --current_; |
| 1266 | #else |
| 1267 | if ( isArray_ ) |
| 1268 | ValueInternalArray::decrement( iterator_.array_ ); |
| 1269 | ValueInternalMap::decrement( iterator_.map_ ); |
| 1270 | #endif |
| 1271 | } |
| 1272 | |
| 1273 | |
| 1274 | ValueIteratorBase::difference_type |
nothing calls this directly
no outgoing calls
no test coverage detected