User forums > Nightly builds
The 23 October 2010 build (6752) is out.
Grom:
Bug!!! When I use debugger, the call stuck doesn't show template classes methods from template class methods. :twisted: :twisted: :twisted:
Say
template<calass type>
class A{
type a;
void Add(type b)
{
a+=b;
}};
template<calass type>
class B{
type a;
A<T> m_A;
void Mul(type b)
{
a*=b;
}
void Add(type b)
{
m_A.Add(b);
}
};
void main()
{
B<float> B;
B.Add(10.0); // <- doen't show to the class A!!!!
return -1;
}
oBFusCATed:
Have you tried the version from the debuggers branch?
If it doesn't work there, can you paste the debuggers debug log?
p.s. and please use code tags for larger pastes
fataluk1:
Does it happen to anyone else that when you write two nested for-s for example
for( int i = 0 ; i < N ; i++ ){
for( int j = 0 ; j < N ; j++ ){
}
}
I want it to look like above ( with the second for indented ). Sadly codeblocks drives me crazy when it aligns the second for with the first. Is that an option that I can turn off or is it just a bug.... I cannot make myself believe this is a feature!??! Really, who'd write without indentation... Please fix it :)
OS: Kubuntu 10.10
Codeblocks SVN 6803, Build : Nov 1 2010, 10:20:47 - wx 2.8.10 - 32 bit
EDIT: WHERE ARE MY ABBREVIATIONS!?!?!?
Loaden:
--- Quote from: fataluk1 on November 02, 2010, 06:38:24 am ---Does it happen to anyone else that when you write two nested for-s for example
for( int i = 0 ; i < N ; i++ ){
for( int j = 0 ; j < N ; j++ ){
}
}
I want it to look like above ( with the second for indented ). Sadly codeblocks drives me crazy when it aligns the second for with the first. Is that an option that I can turn off or is it just a bug.... I cannot make myself believe this is a feature!??! Really, who'd write without indentation... Please fix it :)
OS: Kubuntu 10.10
Codeblocks SVN 6803, Build : Nov 1 2010, 10:20:47 - wx 2.8.10 - 32 bit
EDIT: WHERE ARE MY ABBREVIATIONS!?!?!?
--- End quote ---
trying to delete default.conf?
koso:
I have the same problem with indent, even with new profile.
In my case, I can reproduce it with this:
1. disable brace completion (in default config)
2. write this:
--- Code: ---for(;;) {
for(;;)
--- End code ---
3. press '{'
Now it unindents inner for ... and it happens only if you write code from '2' char by char <- so do not copy-paste it to test.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version