News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

The 28 august 2007 build (4413) is out.

Started by killerbot, August 28, 2007, 10:51:35 PM

Previous topic - Next topic

dempl_dempl

Small Bug in code completition found.
Using latest version (4413).

template <int I>
//calculate Factoriel during compile time...
class Fact
{
   public:
      static const unsigned int value = I * Fact<I-1>::value ;
};

template <>
class Fact<0>
{
   public:
      static const unsigned int value = 1;
};


Try to write template specialization:
Fact<4>::va(lue);

..code completition failes...

Ceniza

Code completion is still work-in-progress. If you want to report that as a bug or a feature request, go ahead and do it; however, don't expect it to be implemented anytime soon.

dempl_dempl

Well, it doesn't hurt to report a bug  :).
BTW, very nice IDE.
I'll permanetly gonna stick to Code::Blocks , and of the reasons is , code-completition :) .
Besides template-specializations , completition works very well.


Untill recently, I've used Kdevelop, but with code::blocks you can really get the job done.
KDevelop has plugin for 99999999 languages ,and none of them works normal, it's really overcrowded ,
bugy and I couldn't do anything usefull with it. I' like making programs, not admiring the number of absolutley un-needed features. And that irritating letter K on the begining like the rest of KDE programs. Grr... simply frustrated.
Imagine you call your program KCode::Blocks . Oh, I forgot, you don't use  Qt :).





lubos

Quote from: dempl_dempl on August 31, 2007, 11:51:43 PM
Imagine you call your program KCode::Blocks
or Kode::Blocks, not that bad  :lol:

JGM

Quote from: dempl_dempl on August 31, 2007, 11:51:43 PM
And that irritating letter K on the begining like the rest of KDE programs. Grr... simply frustrated.
Imagine you call your program KCode::Blocks . Oh

Jaja thats funny, is true all that programs named with a K to identify them as kde programs.

David Perfors

Not really true... kqemu is not KDE specific :P (meaning the qemu accelerator and not the frontend ;))
OS: winXP
Compiler: mingw
IDE: Code::Blocks SVN WX: 2.8.4 Wish list: faster code completion, easier debugging, refactoring