| 9130 | explicit BoundValueRef( T &ref ) : m_ref( ref ) {} |
| 9131 | |
| 9132 | auto setValue( std::string const &arg ) -> ParserResult override { |
| 9133 | return convertInto( arg, m_ref ); |
| 9134 | } |
| 9135 | }; |
| 9136 | |
| 9137 | template<typename T> |
nothing calls this directly
no test coverage detected