1
vote
5answers
82 views
Incomplete Type memory leaks?
Microsoft Visual Studio 2008 is giving me the following warning:
warning C4150: deletion of pointer to incomplete type 'GLCM::Component'; no destructor called
This is probably be …
0
votes
4answers
49 views
LNK2019 problem
I have a LNK2019 problem when trying to use some DLL in my project.
Details:
I have a DLL project called dll1; that compiled just fine (using __declspec(dllexport)) in order to …
0
votes
3answers
41 views
Declaration of IEEE mathematical functions like ‘ilogbf’ in MSVC++6
Hi,
Could someone please help and tell me how to include IEEE mathematical functions in MSVC++6? I tried both and , but I still get these errors:
- error C2065: 'ilogbf' : undec …
0
votes
4answers
22 views
Can You Use MSVC 6.0’s Debugger to ‘Step Into’ a Macro?
I am using MSVC 6.0 to call a macro in the Win32API and I'm getting an access violation. I know that the pointers I'm passing to the macro contain valid addresses, though they're …
1
vote
3answers
87 views
Specification of source charset encoding in MSVC++, like gcc “-finput-charset=CharSet”
Hello,
I want to create some sample programs that deal with encodings, specifically I want
to use wide strings like:
wstring a=L"grüßen";
wstring b=L"שלום עולם!";
wstring c=L"中文" …
3
votes
4answers
89 views
How to statically link using link.exe
I've been trying to statically link against a C++ library called Poco on Windows using the Visual Studio 2008 command line tools.
I build my program with:
cl /I..\poco\lib /c mya …
4
votes
4answers
63 views
MSVC: what compiler switches affect the size of structs?
I have two DLLs compiled separately, one is compiled from Visual Studio 2008 and one is a mex file compiled from matlab.
Both DLLs have a header file which they include. when I tak …
6
votes
2answers
70 views
Using valid STATIC member function of class that can’t be installed
Hello,
I have following piece of code:
It compiles without problems under gcc-3.4, gcc-4.3, intel compiler, but fails under MSVC9.
MSVC tells "use of undefined type c_traits< …
3
votes
4answers
84 views
Is it possible to check whether you are building for 64-bit with Microsoft C Compiler?
Is there a simple preprocessor macro that is defined for a 64-bit build? I thought _WIN64 might have been it, but even when I build a 32-bit target, the parts enclosed in a #ifdef …
0
votes
1answer
166 views
CMake Visual Studio linking executable with static library
I have a very simple (currently just a main.cpp) CMake C++ project that I'm trying to build on both Mac OS X and Windows. It depends on libgsasl, which I have compiled as a static …
0
votes
1answer
28 views
CMake, Microsoft Visual Studio, and Monolithic Runtimes
Hello all :)
I'm building a file using the CMake Build System and Microsoft's Visual C++ compiler. When I have CMake generate the visual studio project, the project contains the c …
0
votes
5answers
39 views
Is there a way to get better information for the context of an error when using msvc? (ex: C2248)
Hi,
I'm wondering if there is a way to get better information about the location of an error in msvc (2005)?
Exemple, when inheriting from boost::noncopyable in my class I get a …
0
votes
3answers
52 views
Call class member function in VC++ debugger
Hi,
A while ago I read the Debugging Windows Programs book, and one of the tricks that it talked about extensively was calling functions from the Visual C++ debugger (quick)watch w …
1
vote
2answers
31 views
[win32] can _open() return valid negative fd ?
Is it possible that win32's _open() return valid FD that is negative ?
In other words, is comparison
if( (fd=_open(...)) < 0) error...;
as safe as form
if( (fd=_open …
2
votes
7answers
334 views
Why use Visual Studio 6 for C++
Hello,
I am just wondering why programmers who program in C++ for windows always use Visual Studio 6 instead of Visual Studio 2008?
Isn't the compiler in 2008 much better than th …
