It's OK to make shallow copies where the data is not copied just rereferenced, so we can use default copy and assignment
| 75 | /// It's OK to make shallow copies where the data is not copied just rereferenced, |
| 76 | /// so we can use default copy and assignment |
| 77 | PrimitiveVariable( const PrimitiveVariable &other ) = default; |
| 78 | PrimitiveVariable & operator= ( const PrimitiveVariable &rhs ) = default; |
| 79 | ~PrimitiveVariable() = default; |
| 80 |
no outgoing calls
no test coverage detected