Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Best way to dispatch on the good template function

c++ templates c++11

Is there a mechanism in C++ to make a full copy of a derived class from a base class pointer without dynamic memory allocation?

c++ pointers c++11 auto

Writing safe copy-constructor with smart pointer

initializing a const array in the constructor

c++ arrays c++11

how can a for range loop infer a plain array size

c++ arrays c++11 for-loop range

enable_shared_from_this Vs Direct Assignment

c++ c++11

Types of elements of a tuple view

c++ templates c++11 c++14

constructor delegates to itself in g++ & clang++

std::mt19937 and std::uniform_real_distribution returning boundary value every time

c++ c++11 random

`is_trivially_destructible` does not work with inherited class

c++ c++11 visual-c++ c++14

error when defining a std::shared_ptr with new operator

c++ c++11 shared-ptr

Why does decltype return type fail for recursive template, while return type deduction works just fine?

Templatize enum class operators

Does joining a member thread accessing other members of its parent class in the parent's destructor result in undefined behavior?

In C++, is it okay to implement an iterator interface in which advancing invalidates the "current" element?

initialise object with equal operator

c++ c++11 initializer

Is std::call_once lock free?

Efficient way to return stl vector by value from function

c++ c++11 stl

decltype(some_vector)::size_type doesn't work as template parameter

What are the negative consequences of using typedefs in an implementation file to shorten type signatutures?

c++ c++11 enums c++14 typedef