| 7019 | explicit BoundValueRef( T &ref ) : m_ref( ref ) {} |
| 7020 | |
| 7021 | auto setValue( std::string const &arg ) -> ParserResult override { |
| 7022 | return convertInto( arg, m_ref ); |
| 7023 | } |
| 7024 | }; |
| 7025 | |
| 7026 | template<typename T> |
nothing calls this directly
no test coverage detected