| 2451 | friend class GenericValue; |
| 2452 | |
| 2453 | GenericArray(const GenericArray& rhs) : value_(rhs.value_) {} |
| 2454 | GenericArray& operator=(const GenericArray& rhs) { value_ = rhs.value_; return *this; } |
| 2455 | ~GenericArray() {} |
| 2456 |
nothing calls this directly
no outgoing calls
no test coverage detected