| 7238 | explicit BoundValueRef( T &ref ) : m_ref( ref ) {} |
| 7239 | |
| 7240 | auto setValue( std::string const &arg ) -> ParserResult override { |
| 7241 | return convertInto( arg, m_ref ); |
| 7242 | } |
| 7243 | }; |
| 7244 | |
| 7245 | template<typename T> |
nothing calls this directly
no test coverage detected