User forums > Nightly builds
The 30 October 2011 build (7550) is out.
oBFusCATed:
--- Quote from: stefanos_ on October 30, 2011, 10:07:49 pm ---I ran svn update, got the latest svn revision (7550), compiled it and sees it as 7548 for some reason.
--- End quote ---
This is because the latest revision of trunk is 7548. It is normal and expected.
JSharpe:
I only just noticed this but is there a reason why std::endl, std::cin.sync() and std::cin.good() aren't highlighted like the others are? I let code blocks generate a new default.conf just to make sure it wasn't mine but it still occurs.
Shouldn't 'sync', 'endl', and 'good' be highlighted green?
I'm new to C++ too so the program written is a bit rubbish :P.
Glooper:
I have downloaded this build 7550 but I cannot compile it. The compiler error I'm getting is:
--- Quote ---C:\dev\CodeBlocks\Projects\codeblocks\src\sdk\scripting\bindings\sc_wxtypes.cpp|251|error: no matching function for call to 'SqPlus::SQClassDef<wxArrayString>::func(<unresolved overloaded function type>, const char [5])'|
--- End quote ---
and it happens in file sc_wxtypes.cpp at the following code
--- Code: ---
void Register_wxTypes()
{
///////////////////
// wxArrayString //
///////////////////
SqPlus::SQClassDef<wxArrayString>("wxArrayString").
emptyCtor().
func(&wxArrayString::Add, "Add").
func(&wxArrayString::Clear, "Clear").
// func(&wxArrayString::Index, "Index").
staticFuncVarArgs(&wxArrayString_Index, "Index", "*").
func(&wxArrayString::GetCount, "GetCount").
func(&wxArrayString::Item, "Item");
--- End code ---
I'm using Code::Blocks SVN build 7550 as the IDE, wxWidgets 2.9.2 library and MinGW compiler. I'm a relative newcomer to C++ and I think the error is telling me that in the definition of the class there is no function defined that matches the call. Is this correct? If so any ideas on how I might correct it?
Thanks
Alpha:
--- Quote from: Glooper on November 01, 2011, 10:44:48 pm ---I'm using Code::Blocks SVN build 7550 as the IDE, wxWidgets 2.9.2 library and MinGW compiler.
--- End quote ---
Try using wxWidgets 2.8.12 (2.9.x is currently considered unstable, and may be your problem).
Glooper:
The C::B project that I'm using was supplied with the SVN download (Codeblocks_wx29.cbp) and the name suggests that it is set up to use wxWidgets 2.9 so I assumed that it would be OK to use this version. Has anyone successfully compiled from this project file?
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version