Hey All --

Is there another operand for the following, or is this a bug?

uchar[] foo = new char[100];
int len = 0;
int final_len = 0;

some_method(foo,out len);
some_method2(foo+len, out final_len);

The foo+len yields the error:

x.vala:90.25-90.52: error: Incompatible operand

However, if I replace the variable length with a hardcoded one, it's
accepted:

some_method2(foo+16, out final_len);

Thanks for the help!

Shawn
_______________________________________________
vala-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/vala-list

Reply via email to