Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How is is_standard_layout useful?

c++ c++11 standard-layout

Using std::move to send a std::unique_ptr to std::thread in VS1012

Hoisting of non-atomic loads up through acquiring atomic loads

c++ gcc c++11 atomic

Is it possible to create a template alias?

c++ c++11 c++14 type-alias

Intel 2015 compiler bug, RAII destruction not correct, is this a bug or am I doing something wrong?

c++ c++11 icc

Does making a derived C++ class "final" change the ABI?

Why did expression types change in C++ between versions?

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

C++ - Iterating over a tuple & resolution of type vs constant parameters

c++ c++11 tuples enable-if

Perfect pass-through

c++ c++11

Partial Binding of Function Arguments

tail recursion performance on template meta-programming

How is it parsed: constructing unnamed temporary with braced init list

c++ c++11

Return value or rvalue reference?

c++ c++11 rvalue-reference

Are short circuit evaluation rules expected at compile time?

c++ templates c++11

When does it matter that `this` is an rvalue?

c++ c++11 this language-lawyer

Take ownership of parameter by rvalue-reference

Bug throwing exceptions with std::call_once

c++ c++11 libstdc++

Is an inherited default constructor also user-defined?

Why does this specialized char_traits<uint8_t> and codecvt<uint8_t> for use with the basic_ifstream template throw std::bad_cast?

When are constexpr objects constructed?

c++ c++11 constexpr