1
vote
Dynamically sorted STL containers
It sounds like you want a multi-index container. This allows you to create a container and tell th …
1
vote
1
vote
C++ libraries to manipulate images
It takes some setting up, but I'm a fan of Adobe's GIL (now part of …
3
votes
How should I detect unnecessary #include files in a large C++ project?
Like Timmermans, I'm not familiar with any tools for this. But I have known programmers who wrote a Perl (or Python) script to try commenting out each include line one at a time and then compile e …
1
vote
BerkeleyDB Concurrency
The way I understand things, Samba created tdb to allow "multiple concurrent writers" for any particular database file. S …
0
votes
How does gcc implement stack unrolling for C++ exceptions on linux?
There isn't much documentation currently available, however the basic system is that GCC translates try/catch blocks to …
0
votes
C++ timing, milliseconds since last whole second
Intel's Threading Building Blocks library has a function for this, but TBB is currently only availble on Intel and clones (that …
8
votes
C++ Which is faster: Stack allocation or Heap allocation
Honestly, it's trivial to write a program to compare the performance:
#include <ctime>
#include <iostream>
namespace {
class empty { }; // even empty classes take u …
1
vote
C++ types using CodeSynthesis XSD Tree Mapping
I've been bitten by this before. If the line:
::xml_schema::time t();
is exactly as it appears in your code (that is, with the parens) then the problem is that yo …
5
votes
How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8?
The trick is to create a Persistent handle (second bullet point from the linked-to API reference: "Persistent handles are not held on a stack and are deleted only when you specifically remove them …
3
votes
“You can’t forward declare classes that overload operator&”?
I think the statement isn't precise. Like the other answers, I'm guessing here. First, I'm assuming they're referring to …
26
votes
Using “super” in C++
Bjarne Stroustrup mentions in Design and Evolution of C++ that super as a keyword was considered by the ISO C++ Standards committee the first time C++ was standardized.
EDI …
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 …
1
vote
Help finding C++ interval tree algorithm implementation
The C++ standard library offers red/black trees std::map, std::multimap, std::set and std::multiset.
Really, I can't think of any way to handle this more efficiently than to keep a std::map …
1
vote
C++’s “placement new”
I've seen it used as a slight performance hack for a "dynamic type" pointer (in the section "Under the Hood"): …
