Search Results

22
votes

How do you detect/avoid Memory leaks in your (Unmanaged) code?

In C++: use RAII. Smart pointers like std::auto_ptr, boost::shared_ptr, boost::scoped_ptr and boost::weak_ptr are your friends. …
0
votes

mmap() vs. reading blocks

mmap should be faster, but I don't know how much. It very much depends on your code. If you use mmap it's best to mmap the whole file at once, that will make you life a lot easier. One potential pr …
0
votes

mmap() vs. reading blocks

I agree with Douglas, you should probably want to preprocess it. It us not very likely that this dataset can't be cut up into pieces. You said the content is sparse, how are you storing it? Compact …
0
votes

Is there a way to parse a dependency tree from a build script output?

Static libraries, that makes life more difficult in this regard. In case of dynamic libraries you could just have used ldd on the resulting executable and be done with it. The best bet would be som …
11
votes

Can UDP data be delivered corrupted?

UDP used a 16 bit checksum. It is not impossible for it to have corruption, but it's pretty unlikely. In any case it is not more susceptible for corruption than TCP. …
4
votes

Deciphering C++ template error messages

Some compilers give better messages than others. What compiler are you using? Having said that, they are all pretty bad. C++0X will fix most of this problem (see …
0
votes

Does ScopeGuard use really lead to better code?

I haven't used this particular template but I've used something similar before. Yes, it does lead to clearer code when compared to equally robust code implemented in different ways. …
4
votes

How can I embed Perl inside a C++ application?

I'm currently writing a library for embedding Perl in C++, but it's not finished yet. In any c …
3
votes

C++ Template Ambiguity

AFAIK it would be compiled as new A<b>(c) > d. This is the only reasonable way to parse it IMHO. If the parser can't assume under normal circumstances a > end a template argument, t …
1
vote

How do you normally set up your compiler’s optimization settings?

I prefer to use minimal size. Memory may be cheap, cache is not. …
13
votes

C++ Comma Operator

It would be equal to b. The comma operator has a lower precedence than assignment. …
0
votes

Are C++ Reads and Writes of an int atomic

No, they aren't (or at least you can't assume they are). Having said that, there are some tricks to do this atomically, but they typically aren't portable (see …
0
votes

Open source PDF library for C/C++ application?

It depends a bit on your needs. Some toolkits are better at drawing, others are better for writing text. Cairo has a prett …
1
vote

Does anyone use template metaprogramming in real life?

Yes I have, mostly to do some things that resemble duck-typing when I was wrapping a legacy API in a more modern C++ interface. …
0
votes

Macro to test whether an integer type is signed or unsigned

For c++, there is boost::is_unsigned<T>. I'm curious why you need it though, there are few good reasons IMHO. …

1 2 3 4 next
15 30 50 per page