Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Is it possible to pass generic lambda as non-template argument

When should we use parenthesis ( ) vs. initializer { } syntax to initialize objects in C++11? [duplicate]

c++ c++11 initialization c++14

strange error: use of deleted function 'std::unique_ptr<_Tp, _Dp>::unique_ptr when no pointers really created

How I can find out if a Linux system uses Wayland or X11?

c++ linux c++14 x11 wayland

Is there any reason why `std::exchange` is not `constexpr`?

c++ c++14 std constexpr

copy_if with different types

c++ c++14

Why can't a generic lambda call itself, but wrapping it in a class allows it?

Execute function inside function template only for those types that have the function defined

Two curiosities with the C++ grammar

Why doesn't make_unique work with unique_ptr::reset?

c++ c++11 unique-ptr c++14

Checking if a type is a map

assigning members of a pair to variables

c++ c++11 c++14

Possible gcc bug with C++14 polymorphic lambdas?

c++ gcc lambda clang c++14

Reinterpret cast a template non-type parameter: clang c++14 vs c++1z

c++ clang c++14 c++17

Is there any special reason why the move constructor is not elided in the snippet shown below?

C++ Template overload with enable_if: different behaviour with g++ and clang

I believe clang erroneously allows inline friend function access to data in an enclosing scope. Both gcc and vs2013 reject this code

c++ clang c++14 friend clang++

Static templated constexpr nested class member

Recursive computation using variable templates - gcc vs clang