| 114 | { |
| 115 | public: |
| 116 | complex():x(0.0),y(0.0){}; |
| 117 | complex(const double &_x):x(_x),y(0.0){}; |
| 118 | complex(const double &_x, const double &_y):x(_x),y(_y){}; |
| 119 | complex(const complex &z):x(z.x),y(z.y){}; |
nothing calls this directly
no outgoing calls
no test coverage detected