| 31 | typedef double& proxy ; |
| 32 | |
| 33 | Vec( double* data_ ) : cache(data_){} |
| 34 | inline proxy operator[]( int i){ return cache.ref(i) ; } |
| 35 | inline proxy operator[]( int i) const { return cache.ref(i) ; } |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected