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