| 132 | typedef Dynamic Ptr; |
| 133 | |
| 134 | inline Struct( ) : value() { } |
| 135 | inline Struct( const T &inRHS ) : value(inRHS) { } |
| 136 | inline Struct( const null &) { value = T(); } |
| 137 | inline Struct( const Reference<T> &); |
nothing calls this directly
no test coverage detected