Skip to content
Snippets Groups Projects

aql: basic tab-completion using readline

Merged Tomáš Pecka requested to merge readline into master
Files
28
@@ -27,7 +27,7 @@ private:
if ( input == nullptr )
return false;
if ( checkInput && ! abstraction::CheckInput < ValueProvider < ParamType > >::checkInput ( input->getProxyAbstraction ( ), 0 /* Note: yes index zero */ ) )
if ( checkInput && ! abstraction::CheckInput < ValueProvider < ParamType > >::checkInput ( input, 0 /* Note: yes index zero */ ) )
return false;
if ( m_params.size ( ) < index + 1 )
Loading