| 105 | class valueptr { // A bit of ugly glue used to make Array/Dict iterator's operator-> work |
| 106 | public: |
| 107 | explicit valueptr(Value v) :_value(v) { } |
| 108 | Value* operator-> () {return &_value;} |
| 109 | private: |
| 110 | Value _value; |
nothing calls this directly
no outgoing calls
no test coverage detected