Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++03

Mutex in C++ BEFORE C++11

c++ mutex c++03

Using boost to create a lambda function which always returns true

c++ boost lambda c++03

How to "dereference a type" in C++03?

C++ "Floating Point Enum"

Passing a member function to for_each in C++03 (no boost, no c++11)

c++ stl c++03

RAII object for restoring previous value

c++ boost c++03

Concatenating proprocessor macro __FUNCTION__ with a string

c++ c-preprocessor c++03

Is there any library that provides containers for non-copyable types that are not default-contructible?

c++ c++03

Construct std::string from up to X characters, stopping at null char

c++ stdstring c++03

Stack allocator for C++03 standard containers

c++ stl c++03 allocator

Placing a namespace-scope file-local (.cpp) constant in an anonymous namespace or not

Does "potentially-evaluated" means the same as "odr-used" in C++03?

c++ language-lawyer c++03

Do I need a memory barrier for a change notification flag between threads?

How to wait for an asio handler?

Substitution of void as parameter to templated method

How to delegate an action to function return?

c++ c++03

Migrating code from C++03 to C++11: should I be cautious about the implicit default move constructor?

c++ c++11 c++03