User forums > Nightly builds

The 10 October 2009 build (5859) is out.

<< < (9/25) > >>

critic:
Please, add sorting of project tree without case matching (otherwise I have 2 alphabetically sorted lists). I think this can be an option in context menu of the project manager widget.

critic:
CC has strange mistake. Here is an example:

--- Code: ---QString str;
str.arg(123).arg(123).arg(123). ... // and so on

--- End code ---

After the third or the forth recursive call the IDE is freezing.

And else:

--- Code: ---template <class T>
struct STRUCT1
{
    T obj;
};

struct STRUCT1
{
    void func() {}
};

STRUCT1<STRUCT2> obj;

// first test
obj.          // here appers list with `obj` - this is good!

// second test (I tested it without the first test line)
obj.obj.     // but here no CC list - why?

--- End code ---

Thanks for your job!

ollydbg:

--- Quote from: critic on October 20, 2009, 09:35:13 am ---CC has strange mistake. Here is an example:

--- Code: ---QString str;
str.arg(123).arg(123).arg(123). ... // and so on

--- End code ---

After the third or the forth recursive call the IDE is freezing.

And else:

--- Code: ---template <class T>
struct STRUCT1
{
    T obj;
};

struct STRUCT1
{
    void func() {}
};

STRUCT1<STRUCT2> obj;

// first test
obj.          // here appers list with `obj` - this is good!

// second test (I tested it without the first test line)
obj.obj.     // but here no CC list - why?

--- End code ---

Thanks for your job!

--- End quote ---

That's true, because currently, CC doesn't parse any template argument, so, it can't pass the "second test". If someone would like to implement this functionality...., I will be happy.

blueshake:
The macro replacement and template parse are not implemented,so it doesn't work certainly.

critic:
Thanks for fast answer, ollydbg! I will go on test CC  :).

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version