User forums > Nightly builds
The 17 September 2011 build (7452) is out.
ollydbg:
This patch should fix the parser problem:
--- Code: ---Index: F:/cb/codeblocks_trunk/src/plugins/codecompletion/parser/parserthread.cpp
===================================================================
--- F:/cb/codeblocks_trunk/src/plugins/codecompletion/parser/parserthread.cpp (revision 7496)
+++ F:/cb/codeblocks_trunk/src/plugins/codecompletion/parser/parserthread.cpp (working copy)
@@ -131,6 +131,7 @@
const wxString kw_else (_T("else"));
const wxString kw_enum (_T("enum"));
const wxString kw_elif (_T("elif"));
+ const wxString kw_case (_T("case"));
// length: 5
const wxString kw__CPP_ (_T("\"C++\""));
const wxString kw___asm (_T("__asm"));
@@ -688,6 +689,11 @@
else
SkipToOneOfChars(ParserConsts::semicolonclbrace, true);
}
+ else if (token == ParserConsts::kw_case)
+ {
+ m_Str.Clear();
+ SkipToOneOfChars(ParserConsts::colon, true);
+ }
else
switchHandled = false;
break;
--- End code ---
I just put it in my pending patches lists.
stefanos_:
--- Quote from: oBFusCATed on October 20, 2011, 05:24:12 pm ---Yes, you won't be able to use svn < 1.7, but so what, if you have to use svn 1.6.xx just make a new check out?
But what is the connection with the C::B project (us)?
p.s. Mostly linux, sometimes I run windows to play games or test new C::B features. At work I've migrated to linux, too.
--- End quote ---
Yeah you are right. I feel silly already :D I thought for some reason svn 1.7.0 would break current local repository but is not the case. Currently installing the latest revision.
Btw, what about all these "variable not used" warnings? If those variables are not used, should they be declared? And if yes, why not get initialized with a default value?
ham:
thx
updating linux worked for all problems.
except some bug at opening projects CB is now a complete working, very nice IDE for me :-)
h.a.n.d.
Micool121:
Any target for a new nightly build ?
The only thing I miss is the patch for this awfull editor function focus we reported ;)
thx !
oBFusCATed:
Killberbot can answer the question, but maybe it is time for another monthly build :)
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version