| 145 | } |
| 146 | |
| 147 | double area() const |
| 148 | { |
| 149 | constexpr double pi = 3.14159265358979323846; |
| 150 | return pi*radius_*radius_; |
| 151 | } |
| 152 | }; |
| 153 | |
| 154 | inline constexpr auto rectangle_marker = [](double) noexcept {return "rectangle"; }; |
no outgoing calls
no test coverage detected