Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++03

std::bitset::all substitute for prior C++11 compilers

c++ c++03 std-bitset

Checking whether a template argument is a reference [C++03]

c++ templates sfinae c++03

How should memory be freed after an exception is thrown in C++?

exception memory malloc c++03

Retrieving size of datatype from std::type_info

c++ std c++03

= NULL, and non-static data member initializing in c++98

c++ gcc c++03 c++98

What's the best way to return something like a collection of `std::auto_ptr`s in C++03?

The move function in unique_ptr C++03 emulation

With an std::ifstream, is there a difference between ignoring characters and seeking?

c++ iostream c++03

Change or check the openmode of a std::ofstream

c++ iostream ofstream c++03

How to do this with std::bind?

c++ c++03 std-function stdbind

Template meta-code and private members

c++ templates c++11 c++03

Why Does the Standard C++ Grammar Not Cover this Case?

c++ typedef to fix template args

c++ c++11 templates c++03

What was `auto` used for before?

c++ c++11 history auto c++03

Is it good practice to store copies of the same shared pointers in different vectors?

c++ shared-ptr c++03

Does std::vector::erase() invalidate the iterator at the point of erase?

c++ vector erase c++03

Returning pointer-to-member-function (without typedefs)

Which constructor is invoked here?

c++ c++03

How to iterate over a TR1 tuple

c++ tuples c++03 stdtuple