Author Topic: The 28 august 2007 build (4413) is out.  (Read 26932 times)

dempl_dempl

  • Guest
Re: The 28 august 2007 build (4413) is out.
« Reply #15 on: August 31, 2007, 02:43:13 am »
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...

Offline Ceniza

  • Developer
  • Lives here!
  • *****
  • Posts: 1441
    • CenizaSOFT
Re: The 28 august 2007 build (4413) is out.
« Reply #16 on: August 31, 2007, 04:59:09 am »
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

  • Guest
Re: The 28 august 2007 build (4413) is out.
« Reply #17 on: August 31, 2007, 11:51:43 pm »
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 :).





Offline lubos

  • Almost regular
  • **
  • Posts: 131
Re: The 28 august 2007 build (4413) is out.
« Reply #18 on: September 01, 2007, 12:12:28 am »
Imagine you call your program KCode::Blocks
or Kode::Blocks, not that bad  :lol:

Offline JGM

  • Lives here!
  • ****
  • Posts: 518
  • Got to practice :)
Re: The 28 august 2007 build (4413) is out.
« Reply #19 on: September 01, 2007, 01:58:20 am »
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.

Offline David Perfors

  • Developer
  • Lives here!
  • *****
  • Posts: 560
Re: The 28 august 2007 build (4413) is out.
« Reply #20 on: September 01, 2007, 08:59:04 am »
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