------- Comment #1 from eakrohn at cs dot uiowa dot edu  2009-02-17 03:53 
-------
My concern is this function

swap(int *x, int *y){ ... }

with this function call

int x = 5, y = 7;
swap(x,y);

compiles and works just fine.  But this function

swap(int *x){ ... }

with this function call

int x;
swap(x); 

is a compile error.  It's not consistent.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39211

Reply via email to