On 3/16/2011 6:04 AM, Thickbrick Sleaford wrote:
> /* rant, please ignore... */
Hahaha! Agreed. We have varying standards internally, as well.
Honestly, I wouldn't mind something like a "Weekly WTF?" where
non-Linden devs pick out a piece of bad code and grill us over
it. It may not help but i
That error message is basically saying "you can't assign to a const variable."
Line 21 in your paste is reusing file_name, which is one of the method's
arguments, and is const. You need a local variable which isn't const there.
But, I don't think this makes sense otherwise. In what cases will fr