Developer forums (C::B DEVELOPMENT STRICTLY!) > CodeCompletion redesign
vector<int> is OK, but string or wstring no-work.
Loaden:
SVN 6083.
[attachment deleted by admin]
blueshake:
--- Quote ---If you drag the scroll bar prompt window, you will find many non-basic_string <T> function, it seems from iostream.
--- End quote ---
you can not use variable name ws here.because it has been defined in istream.tcc which belong to gcc files.
Note:
try another name e.g. wsss,you will get the answer.
ollydbg:
--- Quote from: blueshake on January 14, 2010, 06:18:32 am ---
--- Quote ---If you drag the scroll bar prompt window, you will find many non-basic_string <T> function, it seems from iostream.
--- End quote ---
you can not use variable name ws here.because it has been defined in istream.tcc which belong to gcc files.
Note:
try another name e.g. wsss,you will get the answer.
--- End quote ---
Good! So, this is not a problem. :wink:
ollydbg:
Just a reminder:
@morten
This is a big bug, should be fixed soon.
Re: The 12 January 2010 build (6080) is out.
Loaden:
--- Quote from: ollydbg on January 14, 2010, 06:38:29 am ---
--- Quote from: blueshake on January 14, 2010, 06:18:32 am ---
--- Quote ---If you drag the scroll bar prompt window, you will find many non-basic_string <T> function, it seems from iostream.
--- End quote ---
you can not use variable name ws here.because it has been defined in istream.tcc which belong to gcc files.
Note:
try another name e.g. wsss,you will get the answer.
--- End quote ---
Good! So, this is not a problem. :wink:
--- End quote ---
Confirm it! Thanks!
Below code works fine.
--- Code: ---#include <iostream>
#include <string>
int main()
{
std::wstring ws;
ws.
return 0;
}
--- End code ---
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version