On 08/16/2013 02:13 PM, Iyer, Balaji V wrote:
+ /* If it is a built-in array notation function, then the return type of + the function is the type of the array passed in as array notation. */How can the function return an array?float x, A[10]; x = __sec_reduce_add (A[:]); // The sec_reduce_add function's return type is the type of A[] which is float.
Ah, then the comment should say "...is the element type of the array...". Jason