Re: [C++0x] Range-based for statements and ADL

2011-03-26 Thread Rodrigo Rivas
On Sat, Mar 26, 2011 at 2:48 AM, Gabriel Dos Reis wrote: > I see a core language specification, I see a third party library > implementation. > I don't see a unified concept. I don't see it either. It's just a wish. > if it would add nothing, then we are in violent agreement that we should > no

More links in release change list

2011-03-26 Thread Jonathan Adamczewski
As I read through http://gcc.gnu.org/gcc-4.6/changes.html, it seems to me that would be quite useful (and interesting) to be able to see more information for each of the changes. Links to relevant discussion, bugs, papers or patches/commits would make it far easier to understand the substance o

A question on coding conventions

2011-03-26 Thread Levon Haykazyan
Hi everybody, I was trying to configure vim to work better with gcc coding conventions. When I set 'tab' symbol to be interpreted as 2 spaces, I noticed that a lot of formatting in e.g. gcc/cp/parser.c was gone. A bit of research showed that in a lot of places 'tab' was used for 8 spaces. I've

Possible Bug

2011-03-26 Thread Nathan Boley
Hi All, In a much larger application, I was getting a weird segfault that an assignment to a temporary variable fixed. I distilled the example into the attached "test_case.c". When I run test_case.c under valgrind I get a memory read error, and it segfaults with electric fence, but I'm not actuall

Re: A question on coding conventions

2011-03-26 Thread Michael Matz
Hi, On Sat, 26 Mar 2011, Levon Haykazyan wrote: > I was trying to configure vim to work better with gcc coding > conventions. When I set 'tab' symbol to be interpreted as 2 spaces, I > noticed that a lot of formatting in e.g. gcc/cp/parser.c was gone. Yeah, never change tabstop, change shiftwi

gcc-4.7-20110326 is now available

2011-03-26 Thread gccadmin
Snapshot gcc-4.7-20110326 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/4.7-20110326/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 4.7 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/trunk

Re: Possible Bug

2011-03-26 Thread Ian Lance Taylor
Nathan Boley writes: > In a much larger application, I was getting a weird segfault that an > assignment to a temporary variable fixed. I distilled the example into > the attached "test_case.c". When I run test_case.c under valgrind I > get a memory read error, and it segfaults with electric fenc