Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

How to avoid the need to specify deleter for std::shared_ptr every time it's constructed or reset?

Compilation of C++14 in qtcreator

c++ qt qt-creator c++14

Why can a lambda expression return a local enum class type?

Derived class is able to access its base class' private member

c++ c++14 metaprogramming

if-else depends on whether T is a complete type

Is initializing a atomic pointer atomic? What happens if initialization or memory allocation throws?

c++ c++11 c++14

Why does this code get floating point exception when there is no float data-type?

Is decltype of a non-static member function ill-formed?

How to define std::tuple<...> with number of arguments

c++ templates c++14

How to return a std::function that contains a std::unique_ptr from a generalized lambda capture in C++14?

c++ lambda c++14

Is GCC correct in requiring the constexpr specifier for this reference declaration?

How to write a generic variadic lambda that discards its parameters?

clang, returning std::unique_ptr with type conversion

c++ clang c++14

Virtual destructor alters behavior of decltype

Are weak pointers guaranteed to have expired by the time the std::shared_ptr deleter runs?

c++ c++11 c++14 shared-ptr

Difference between std::string(size, '\0') and s.resize(size)?

c++ c++14

How to avoid false positives with Helgrind?

c++ multithreading c++14

Why I can't desalinize std::array like this? [duplicate]

Why do lambda functions drop deduced return type reference by default?

c++ lambda clang c++14 auto

Wrap pattern std::begin; return begin(c); into a function

c++ c++11 c++14 c++17