Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Segfault when not specifying return type of lambda function

c++ c++11 lambda

If make_shared/make_unique can throw bad_alloc, why is it not a common practice to have a try catch block for it?

Is (++i)++ undefined behavior?

How to single out the first parameter sent to a macro taking only a variadic parameter

How to overload an operator for composition of functionals in C++0x?

Do smart pointers preclude the need for two-phase construction?

Errors in std::make_shared() when trying to make shared_ptr?

C++11: Why is assigning rvalues allowed?

Can compiler reorder code over calls to std::chrono::system_clock::now()?

Is this a VC++2010 compiler bug?

Uniform initialization with {} reporting unused variable

C++11 calling constructor from constructor of same class type

Does `std::mutex` and `std::lock` guarantee memory synchronisation in inter-processor code?

Template method enable_if specialization

Default template parameter before deduced parameter in a function?

c++ templates c++11

Customising std::shared_ptr or boost::shared_ptr to throw an exception on NULL dereference

Is a default value of nullptr in a map of pointers defined behaviour?

Why does INVOKE facility in the C++11 standard refer to data members?

c++ c++11 standards

Template Constructor Taking Precedence Over Normal Copy and Move Constructor?

c++ c++11

c++ rvalue reference and move semantics

c++ c++11 move-semantics