| 5 | class BoolExt { |
| 6 | public: |
| 7 | constexpr inline BoolExt(bool val = false) : m_val(val) {} |
| 8 | constexpr inline BoolExt(const BoolExt& other) = default; |
| 9 | constexpr inline BoolExt(BoolExt&& other) noexcept = default; |
| 10 | constexpr inline BoolExt& operator=(const BoolExt& other) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected