Tagged Questions
4
votes
6answers
618 views
Partial builds versus full builds in Visual C++
For most of my development work with Visual C++, I am using partial builds, e.g. press F7 and only changed C++ files and their dependencies get rebuilt, followed by an incremental link. Before ...
2
votes
2answers
194 views
Release build problems; Passing a std::string object to a static library function
This is the first time I've tried to use the release build with Visual C++ 2005 and it seems there's definitely some differences.
My current error is:
Unhandled exception at 0x6ef7d628 ...
0
votes
2answers
188 views
TRACE Macro Not Compiled Out Properly in Release Build - C++
When I do a Release build of my Visual Studio 2008 solution I get a bunch of errors like this:
error C2059: syntax error : ','
This is how I typically use TRACE:
TRACE(_T("My error ...