User forums > Nightly builds

The 16 January 2010 build (6088) is out.

<< < (11/28) > >>

blueshake:
I have discussed this with ollydbg,to avoid you do the second time of the issue.I put it here,not test it seriously. :D

oBFusCATed:

--- Quote from: blueshake on January 19, 2010, 01:04:22 pm ---I have discussed this with ollydbg,to avoid you do the second time of the issue.I put it here,not test it seriously. :D

--- End quote ---

Morten don't you think there is a need for another CC branch?

MortenMacFly:

--- Quote from: oBFusCATed on January 19, 2010, 01:14:20 pm ---Morten don't you think there is a need for another CC branch?

--- End quote ---
I thought about that already (a lot!)... But I won't be able to maintain another branch, I am already trying hard to keep 4 different copies in sync. As you see: Not without errors. ;-)

However, we still have the CC branch. So all what's needed is to re-active it by merging from trunk. I'll see what I can do...

ollydbg:

--- Quote from: MortenMacFly on January 19, 2010, 01:59:30 pm ---
--- Quote from: oBFusCATed on January 19, 2010, 01:14:20 pm ---Morten don't you think there is a need for another CC branch?

--- End quote ---
I thought about that already (a lot!)... But I won't be able to maintain another branch, I am already trying hard to keep 4 different copies in sync. As you see: Not without errors. ;-)

However, we still have the CC branch. So all what's needed is to re-active it by merging from trunk. I'll see what I can do...

--- End quote ---
If you re-active the CC branch, please write a post in the CodeCompletion redesign sub-forum. :D

MortenMacFly:
Why did you do this:

--- Quote from: blueshake on January 19, 2010, 01:01:28 pm ---
--- Code: ---Index: src/plugins/codecompletion/parser/parserthread.cpp
===================================================================
--- src/plugins/codecompletion/parser/parserthread.cpp (revision 6090)
+++ src/plugins/codecompletion/parser/parserthread.cpp (working copy)
@@ -1989,11 +1990,9 @@
         else if (current == _T("*"))
         {
             m_IsPointer = true;
-            continue;
+            //continue;
         }
-        else if (   wxIsalpha(current.GetChar(0))
-                 && (   (m_Tokenizer.PeekToken() == ParserConsts::semicolon)
-                     || (m_Tokenizer.PeekToken() == ParserConsts::comma)) )
+        else if ((wxIsalpha(current.GetChar(0)) || current.GetChar(0) == '_') )
         {
             TRACE(_T("ReadClsNames() : Adding variable '%s' as '%s' to '%s'"),
                   current.wx_str(),
@@ -2014,6 +2013,7 @@
             m_Tokenizer.UngetToken();
             break;
         }
+
     }
 }
 
--- End code ---

--- End quote ---
?!
How is this related to the typedef problem?

BTW: Did you notice the similarity between the ReadClsNames() and ReadVarNames() method?

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version