Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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

Class template deduction for a pointer to a datatype

Equal number of template and function params

In C++ is it possible to disambiguate between an array ref and a pointer? [duplicate]

reinterpret_cast to the same type

C++14: can you call new in a constexpr?

weird gcc behavior with unsigned ints

c++ c++11 g++ c++14