http://archive.msdn.microsoft.com/d2dhelloworld/Release/ProjectReleases.aspx?ReleaseId=3064
Build the above code and use the mouse to zoom the window back and forth. You will find the big memory lea…
Created on 5/15/2013 (updated 1 day ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 787011
|
|
compiler crashed
Created on 10/3/2012 (updated 10 weeks ago) | 0 validations | 0 workarounds | 15 comments | feedback id: 765866
|
|
|
Closed
as Deferred
|
|
#include <process.h>
#include <omp.h>
#include <windows.h>
unsigned _stdcall NewThread(void*)
{
#pragma omp parallel for
for(int i = 0; i<1000; i++)
{
}
return 0;
}
int _tmain(int argc, _TCHAR*…
Created on 9/5/2012 (updated 8 weeks ago) | 1 validation | 0 workarounds | 6 comments | feedback id: 761358
|
|
|
Closed
as Deferred
|
|
I have used "#pragma setlocale("chinese")", but this source file still can't be compiled correctly. It looks like "#pragma setlocale" doesn't work at all.
So far, I can't pass compiling untill I co…
Created on 3/1/2012 (updated 37 weeks ago) | 1 validation | 0 workarounds | 3 comments | feedback id: 727815
|
|
|
Closed
as By Design
|
|
void Foo(int*&&)
{
}
void Foo(int*&)
{
}
int main()
{
Foo(new int); //will call "void Foo(int*&)"
Foo(new int()); //will call "void Foo(int*&&)". initialize POD to zero will also …
Created on 2/21/2012 (updated 63 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 725876
|
|
|
Closed
as Fixed
|
|
_declspec(align(8))
struct test
{
};
int main()
{
std::vector<test> f; //C2719 error.
return 0;
}
if we modify "void resize(size_type _Newsize, _Ty _Val)" to "void resize(size_ty…
Created on 1/28/2012 (updated 9 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 721286
|
|
|
Closed
as By Design
|
|
Docking window size restoring problem
Created on 2/7/2011 (updated 116 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 641719
|
|
|
Closed
as Won't Fix
|
|
Under Windows 7, there is a leaks check option that will detect when a process leaks memory, but it never works. Please try the most simple code
int main()
{
new int;
return 0;
}
Created on 1/22/2011 (updated 115 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 637530
|
|
|
Closed
as External
|
|