Re: Variable scope debug info

2007-04-05 Thread Brian Ellis
Now if there were actual function calls in the initialization, and no records were emitted, I would consider that to be a problem (haven't tested this at the moment though), however, static initializers like that could easily be skipped as a feature in the interest of saving space. Example : i

Re: Variable scope debug info

2007-04-06 Thread Brian Ellis
> On 05/04/07, Brian Ellis <[EMAIL PROTECTED]> wrote: > > > > Now if there were actual function calls in the initialization, and no > > records were emitted, I would consider that to be a problem (haven't tested > > this at the moment though), howeve

Re: Inclusion in an official release of a new throw-like qualifier

2007-04-11 Thread Brian Ellis
Having not read the entire thread, I risk reiterating an idea that may have already been brought up, but I believe I've got a few thoughts that may be of value... and if somebody's already mentioned them, I hope they take this as a compliment and a vote in their favor. > Otherwise as > you said

Re: Should structure with flexible array be allowed to be passed by value?

2009-03-24 Thread Brian Ellis
o understand that we can't protect everybody from every form of hazardous code, but because this was brought up, I figured something should be said. - Brian Ellis - CODE SNIP - #include #include struct dynamic { int size; int array[]; }; void dont_do_this( st