Skip to content
Snippets Groups Projects

procedural aql

Merged Jan Trávníček requested to merge merge-jt into master
9 files
+ 201
2
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -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