Re: [Interest] QtCreator c++11 integration

2013-06-11 Thread André Pönitz
On Mon, Jun 10, 2013 at 04:48:51PM -0700, Thiago Macieira wrote: > On segunda-feira, 10 de junho de 2013 23.47.04, André Pönitz wrote: > > > Same problem with with "auto"-typed variables. For example when > > > auto-typing a function: Auto class::dostuff() -> vector*; > > > >struct Foo { vecto

Re: [Interest] QtCreator c++11 integration

2013-06-10 Thread Thiago Macieira
On terça-feira, 11 de junho de 2013 05.40.20, Adrian Stern wrote: > Yes exactly! And in addition when creating a typedef like alias like this: > > Using vi = vector; The new syntax for "using" types is not supported yet, I guess. I don't see the point of using it for where typedef can work (which

Re: [Interest] QtCreator c++11 integration

2013-06-10 Thread André Pönitz
On Mon, Jun 10, 2013 at 12:39:29PM +, Adrian Stern wrote: > Hi > > Is there an overview or a roadmap showing features included in QtCreator > and also features still in development? > All my C++11 code compiles and runs without an issue. The only drawback > there is, is the lack parser support

Re: [Interest] QtCreator c++11 integration

2013-06-10 Thread Thiago Macieira
On segunda-feira, 10 de junho de 2013 23.47.04, André Pönitz wrote: > > Same problem with with "auto"-typed variables. For example when > > auto-typing a function: Auto class::dostuff() -> vector*; > >struct Foo { vector *foo() { return new vector(); } }; > >int main() { auto xp = Foo().foo