News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

cc problem

Started by blueshake, September 25, 2009, 03:57:58 PM

Previous topic - Next topic

blueshake

hello,
I found a problem about cc.
here are the test codes.
#include <iostream>

using namespace std;
void fu(int aa, int bb)
{
    if(|)
}
int main()
{
    cout << "Hello world!" << endl;
    return 0;
}


in the | position (notice there is nothing between "(" and "aa"),if you type aa,cc get nothing.
but there is a whitespace between them ,cc worked.
see my attachment.


patch is expected.

[attachment deleted by admin]
Keep low and hear the sadness of little dog.
I fall in love with a girl,but I don't dare to tell her.What should I do?

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.