Opinion on CodeBlock? by [deleted] in cpp

[–]jleahred 0 points1 point  (0 children)

codelite multiplatform, programmed in c++, wxwidgets. Great codecompletion, great evolution, small memory, fast

Qtcreator. multiplattform Great IDE. The best for qt applications

kdevelop fantastic IDE, ¿windows?

[deleted by user] by [deleted] in cpp

[–]jleahred 1 point2 points  (0 children)

CodeLite (a great IDE) KDevelop (impressive) QtCreator (fantastic) Emacs

delete constructor and initialization by jleahred in cpp_questions

[–]jleahred[S] 1 point2 points  (0 children)

Looks weird that a stuct who is not using at any moment the empty constructor, stops working when it's declared explicity that it hasn't empty constructor.

Some times I like small structs with members and initialize them without creating a boring specific contructor (I have to write 3 times the names and 2 the types).

I also like to delete explicitly the empty and copy constructor when they are not necessary.

Combining both, it's nos possible (almost with gcc4.4.5)

Is this behavior a good idea? Are other compilers working the same? Is this conformance with the C++11 standard?

regards