| 5908 | explicit BoundValueRef( T &ref ) : m_ref( ref ) {} |
| 5909 | |
| 5910 | auto setValue( std::string const &arg ) -> ParserResult override { |
| 5911 | return convertInto( arg, m_ref ); |
| 5912 | } |
| 5913 | }; |
| 5914 | |
| 5915 | template<typename T> |
nothing calls this directly
no test coverage detected