0
votes
2answers
50 views
Visual C++ 2008 as frontend for Access
I am working on a database project that requires me to code in C++. I have the framework for the relational database built using Microsoft Access. Since I would like a GUI for the …
1
vote
2answers
60 views
How to determine which C/C++ objects use most memory
Hi!
I have a mixed mode application (managed and native) which has a high memory footprint. I already have found out that most of the memory is allocated by native code. I am not …
3
votes
2answers
71 views
Why are my Visual C++ 2008 x64 builds 5x slower than x86 builds?
I've been trying to improve the build times for my product. We're using continuous integration, and our builds are now taking 2 hours to run.
I've looked at the NANT timings and …
0
votes
3answers
85 views
run time detection of processor type - atomic operations
I am implementing some speed critical multithreaded code. I can avoid having some critical sections if I know for certain that some basic write operations are atomic. I just read a …
0
votes
4answers
199 views
Migrating from Visual C++ 6 to Visual C++ 2008 express
Hi,
I'm tring to migrate my code from VCpp 6 to VCpp 2008 express but when I build the solution I receive this error message:
icl: warning: problem with
Microsoft compilation of
…
2
votes
1answer
224 views
“Cannot convert parameter” using boost::variant iterator
I want to create a function that can take different types of iterators which store the same type of object:
The first is a std::map containing shared_ptr<Foo> (typedef-ed as …
