Search Results

4
votes

Designing a lazy vector: problem with const

Use the mutable keyword on the elems_ data member. …
7
votes

Is std::list<>::sort stable?

According to "The C++ Programming Language" (Stroustrup p470), yes, stl::list<>::sort is stable. …
5
votes

Howto Construct Char Arrays

The error is actually in the following line, at the for loop: your code needs to be contained in a function of some sort, most likely int main(void) …