Description:
Microsoft Visual C newsgroup.
|
|
|
std::set and std::multiset element mutability
|
| |
VC9 allows you to modify a std::set and a std::multiset's elements. This seems to be forbidden by the c++0x standard, so is this being fixed in VC10 or left as it is in order not to break software which is c++03 standard's compliant (debatable) but not c++0x standard's compliant? /Leigh
|
|
vc 2010 beta2 bind unique_ptr move
|
| |
Hello, I'm playing with new language features and as a result: win32 console app->empty project file: main.cpp ...void foo(std::unique_ptr<int> pint) { ...int wmain( ) { std::unique_ptr<int> pint(new int(42)); std::bind(foo, std::move(pint)); ...1>main.obj : error LNK2001: unresolved external symbol "public: __thiscall... more »
|
|
Illegal Incest: Free Incest Videos
|
| |
...VVVVVVVVVVVVVVVVVVVVVVVVVVV VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV VVVVVVVVVVVVVVV .... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .... more »
|
|
using std::find() on std::string vectors
|
| |
Hello All, I have a question on the use of std::find() on a vector that contains std::string objects. When I need to do a search on a vector of strings, I currently use the std::find() algorithm, e.g. : std::vector<std::string>::iter ator theIterator; theIterator = std::find ( vecStrings.begin(),... more »
|
|
Dll function with STL obj. as parameter call crach
|
| |
Hello. The application call function (with STL string object as parameter) from dll. If dll compiled in different mode (release/debug) than application we see this crash. We use Visual Studio 2008 (Windows Mobile 5.0 Pocket PC SDK (ARMV4I) The foolowing code of application: typedef int (*GETINIFILEIMPL)(const std::wstring& wstrIniFileName);... more »
|
|
unique value for map
|
| |
std::map allows to insert unique values(key), is there any other data tyep which allows same. can u use map in a link list, when allocate memory to link list i can insert some values in map
|
|
PERFORMANCE IN VISUAL STUDIO 2008 + STL.
|
| |
Hi Group, We recently migrated our project from VS 2003 to VS 2005 and found that our runtime performance in release mode has degraded by a factor of 3. On investigation we found that it was due to stl in VS 2005. Building with STLPort confirmed this. As of now we are not in a position to migrate to... more »
|
|
STL container performance
|
| |
I am suffering performance problems with the STL implementation in Microsoft Visual Studio 2005. There are indications that it is down to either memory management or some locking contention. As an example, the WordCount sample at [link] running on a 100Mb text file executes in 1 minute 39 seconds when... more »
|
|
wcout, VS2008 and UTF-16
|
| |
Greetings. I'm am currently trying to output wchar_t (== UTF-16) to the windows console. (The console can display UTF_16 just fine if you change the font to lucida console - easiest verified with adding a filename with some greek or cyrillic characters in it and calling dir) Now, my problem is, that the default wcout stream on windows will... more »
|
|
|