4
votes
Detect GCC compile-time flags of a binary
A quick look at the GCC documentation doesn't turn anything up.
he Boost guys are some of the smartest C++ developers out there, and they …
0
votes
7
votes
iostream linker error
The C string.h header and the C++ string header are not interchangeable.
Overall, though, your problem is that the file is getting properly compiled, but the wrong runtime library is gettin …
1
vote
Are memory leaks ever ok?
It looks like your definition of "memory leak" is "memory that I don't clean up myself." All modern OSes will free it on program exit. However, since this is a C++ question, you can simply wrap t …
1
vote
How to guarantee files that are decrypted during run time are cleaned up?
In C++ you should use a RAII tactic:
class Clean_Up_File {
std::string filename_ …
1
vote
What are the practical differences between C compilers on Windows?
A program written in Visual C/C++ 2005/2008 might not compile with another compiler such as GNU C/C++ or vice-versa.
This is true if you either (1) use some sor …
0
votes
9
votes
Why is snprintf faster than ostringstream or is it?
std::ostringstream is not designed to be slower, but it generally is slower when implemented. FastFormat's website has some benc …
2
votes
Delete or update a dataset in HDF5?
According to the user guide (section 5.2, you'll need to scroll down some):
The s …
1
vote
Are threading issues for C/C++ “system level programmers” significantly different from those faced by Java programmers?
It depends on what level you choose to work at. Intel TBB and OpenMP handle a lot of common cases from a pretty high level. Posix threads, Windows APIs, and portable libraries like Boost threads …
1
vote
Array index out of bound in C
As I understand the question and comments, you understand why bad things can happen when you access memory out of bounds, but you're wondering why your particular compiler didn't warn you. …
2
votes
Performance hit from c++ style casts?
There are four C++ style casts:
const_cast
static_cast
reinterpret_cast
dynamic_cast
As already mentioned, the first three are compile-time o …
6
votes
I’ve heard i++ isn’t thread safe, is ++i thread-safe?
If you want an atomic increment in C++ you can use C++0x libraries (the std::atomic datatype) or something like TBB.
There was once a time that the GNU coding guidelines said updating datat …
2
votes
How to allow more memory and avoid stack overflow on lots of recursion?
Although other answers talk about how to either avoid recursion altogether, or how to use tail recursion, or how to simply set a larger stack size, I think for completeness that it's worthwhile to …
0
votes
off-by-one error with string functions (C/C++) and security potentials
The issue is that you don't have permission to write to the item after the array. When you aske …
