Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Deletion of copy-ctor & copy-assignment - public, private or protected?

Travis CI with Clang 3.4 and C++11

Difference between pointer and reference as thread parameter

Difference between steady_clock vs system_clock?

c++ c++11 timestamp

Is this behavior of vector::resize(size_type n) under C++11 and Boost.Container correct?

c++ boost c++11 vector

How do I give streams better exception messages?

C++11 atomic memory ordering - is this a correct usage of relaxed (release-consume) ordering?

Why do shared_ptr deleters have to be CopyConstructible?

Does the equal sign make a difference in brace initialization? eg. 'T a = {}' vs 'T a{}'

Passing by value vs const & and && overloads

Why does MSVC++11 rejects constexpr qualification of a function?

trailing return type using decltype with a variadic template function

C++11 memory pool design pattern?

c++ c++11 memory-pool

convert seconds as double to std::chrono::duration?

c++ c++11 chrono

Implementation of operators for enum class

Elaborated-type-specifier for a scoped enum must not use the ‘class’ keyword

c++ c++11 g++ enum-class g++4.8

Idiomatic Way to declare C++ Immutable Classes

How to declare a vector of atomic in C++

c++ stl c++11 atomic

Legal to overwrite std::string's null terminator?

Is it okay to define a totally general swap() function?