Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

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

Warning with automatic return type deduction: why do we need decltype when return defines the type anyway?

c++ c++11 c++14

Template function specialization for template class

"constexpr" in C++14

c++ c++11 c++14 constexpr

Compiler-deduced type for generic lambdas

Create alias for numeric array

c++ c++11 c++14

Why is a lambda not-movable if it captures a not-copiable object using std::move()?

c++ function lambda c++14 move

C++ Lambda Code Generation with Init Captures in C++ 14

c++ lambda c++14 move