Skip to content
Snippets Groups Projects

procedural aql

Merged Jan Trávníček requested to merge merge-jt into master
2 files
+ 60
37
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -10,10 +10,16 @@
namespace abstraction {
std::string OperationAbstraction::getParamType ( size_t index ) const {
if ( isParamTypeUniversal ( index ) )
return "auto";
return ext::to_string ( getParamTypeIndex ( index ) );
}
std::string OperationAbstraction::getReturnType ( ) const {
if ( isReturnTypeUniversal ( ) )
return "auto";
return ext::to_string ( getReturnTypeIndex ( ) );
}
Loading