Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is it legal for a standard library implementation to specialize a function templated on a concept with a child concept?

Reference or pointer to std::vector of incomplete type

c++ templates c++11 vector

atomic fetch_add vs add performance

c++ multithreading c++11

Least-restrictive memory ordering for single-producer, single-consumer ringbuffer?

Template arguments deduction for function parameter pack followed by other parameters

Is libstdc++ wrong to reject assignment of volatile rvalue to std::ignore?

std::wcstok in VS 2015

c c++11 visual-studio-2015 c11

Does the standard mandate enable_shared_from_this is to be inherited publicly? Why?

Tracking down owner of a shared_ptr?

Disallow implicit conversions to int in function call [duplicate]

c++ c++11

Calling `std::get` on `std::tuple` with elements deriving from `std::tuple` - ill-formed?

Intel C++ cannot convert `T **` to `T const * const *`, GCC can

c++11 gcc icc

C++ Named Return Value Optimization with nested function calls

c++ c++11

decltype(*this) equivalent outside function body

c++ c++11 typetraits

Constructing initializer_list by enumerating values contains random values

c++ c++11 initializer-list

Does std::is_nothrow_move_constructible require a noexcept destructor?

Wouldn't it make sense to overload with respect to noexcept?

Transitioning away from std::string, std::ostream, etc. in a library's public API

Forcibly terminate method after a certain amount of time

Why does delegating to the default constructor not zero initialize member variable

c++11