Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
520 views

How do I solve “Two different CRTLDLLs are loaded” when using packages in C++ Builder 2010?

We are trying to split up our monolithic EXE into a combination of an EXE and several packages. So far, we have one package that we're trying to use, and when running the EXE Codeguard shows the ...
2
votes
2answers
73 views

C++, ostream error when passing argument in CBuilder 2010

What is wrong in this source code? #include <iostream> #include <ostream> #include <fstream> void printTest ( std::ostream * o ) { *o << "test" << std::endl; } ...
1
vote
2answers
80 views

code guards fail and template from string literal

I know the only way to pass a string literal as template argument is to declare it before: file a.h #ifndef A_H #define A_H #include <string> char EL[] = "el"; template<char* name> ...
1
vote
1answer
65 views

code guards fail

Take this files: a.h #ifndef A_H #define A_H char EL[] = "el"; #endif a.cpp #include "a.h" b.h #ifndef B_H #define B_H #include "a.h" #endif b.cpp #include "b.h" main.cpp #include ...
1
vote
2answers
141 views

Ruby & Rails: code guard

Is there some sort of "Zend code guard" for rails applications ? Sultan
1
vote
2answers
477 views

What should I do in order to succesfully link a C++ Builder 6 project in C++ Builder 2009 without unresolved external references to CodeGuard things?

Here's what I did: I've opened a C++ Builder 6 - project in C++ Builder 2009. Auto-converted it to a C++ Builder 2009 project. Told it (C++ Builder 2009) to build everything. Here's what it did: ...
1
vote
2answers
868 views

Does Visual Studio have anything like Borland's CodeGuard?

Is there anything in Visual Studio that will report memory leaks like Codeguard? eg: Error 00001. 0x300010 (Thread 0x0FA4): Resource leak: The object (0xC65D84) was never deleted The object ...
0
votes
1answer
162 views

Problem with Debugging in C++ Builder 2009

I have a strange problem, I hope you can help me. I write a program in C++ Builder 2009, when I run the program without debugger I see an Exception raised. bun in debugger never exception raised and ...