Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

How to test if type is specialization of template with non-type parameters?

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

std::hash specialization using sfinae?

Why does lambda init-capture not work for unique_ptr?

c++ lambda c++14

Return `f`'s result if `f` has a non-void return type - how to refactor this pattern?

GCC : Unscoped enumeration type give an ambiguity error

When is a C++ expression well formed?

Using SFINAE with generic lambdas

Is std::map::end thread-safe and is guaranteed that it always the same for the same container?

Storing an std::thread in C++11 smart pointer

Follow-up: What exactly is a variable in C++14/C++17?

c++11: How to write a wrapper function to make `std::function` objects

c++ c++11 c++14 std-function

Are trigraphs still valid C++?

Is the value of expression f() > g(), when f & g modify same global variable undefined or unspecified?

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

C++ Lambda does not have operator()

Partial Aggregate Initialization and Non-static Data Member Initializer

c++ c++11 c++14

Generalizing these lines of code?

c++ c++11 c++14 redundancy

Returning move-only type compiles even though copy-constructor is unavailable

c++ c++14

Travis CI with C++14 and Linux

Universal aggregate initialization by variadic templates

What differences are between capturing by [&captured] and by [&local = captured] in lambdas?

c++ lambda c++14