Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is it permitted to modify the internal std::string buffer returned by operator[] in C++11

c++ c++11

destructor and no constructor for abstract base class c++

c++ c++11 inheritance

Is there any reason to capture a return-value as an rvalue-reference?

c++ c++11 move

C++ When is it OK to extend the `std` namespace?

c++ c++11 namespaces std

Bare metal without global operator new

Is there any way to trick std::make_shared into using default initialization?

c++ c++11 c++14

std::copy_n doesn't change destination vector size

Distribution as member of class in C++

std::stack element destruction order

c++ c++11

Continuation of "I just can not understand DR 712"

Nested lambda function

c++ c++11 lambda

Why is it called operator overloading?

c++ c++11

C++: What is the correct cast for offseting to std::vector iterator?

C++11: what's the difference between atomic<T>::store and atomic_store<T>

c++ function class c++11 atomic

Destructor in derived class marked as noexcept(false)

c++ c++11

using type alias doesn't work with "const" pointer

How to declare a member in a base template class where the type is dependent of the derived class?

template specialization for std::atomic<double> &

Is std::future::wait a memory barrier? (I can not explain this data race)

c++ multithreading c++11

Passing member function pointer as template parameter

c++ c++11 templates