Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Why does this rvalue reference bind to an lvalue?

SFINAE and decltype(auto)

c++ auto decltype c++14

Copy elision when creating object inside emplace()

c++ c++14 copy-elision

C++14 warning: too many template headers for variable (should be 0)

Difference between GCC binary literals and C++14 ones?

c++ gcc g++ literals c++14

Determine least common ancestor at compile-time

Are const iterators still evil in C++14

c++ iterator c++14

Move all elements which satisfy some condition from one container to another, i.e. I'm looking for some kind of "move_if"

c++ c++11 c++14

Can a generic lambda have no arguments?

c++ lambda c++14

Classes with both template and non-template conversion operators in the condition of switch statement

Move a unique_ptr with custom deleter to a shared_ptr

What is the type of this self-applying factorial function?

Initializing capturing lambda in ternary operator

Is it illegal to invoke a std::function<void(Args...)> under the standard?

Will automatic return type deduction work for main?

c++ c++14

Self-initialization of a static constexpr variable, is it well-formed?

push_back or emplace_back with std::make_unique

Generic lambda with std::function does not capture variables

c++ gcc c++14

Why is `make_unique<T[N]>` disallowed?

Why is this not a constant expression?