Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Does sequenced-before relation in C++11 prevent compiler/CPU reordering?

c++ c++11 language-lawyer

Template Template Parameters in the C++ Standard Library?

c++ c++11 c++14

Temporary lifetime and perfect forwarding constructor

c++ c++11

using template specialization

Are unscoped enumerations still useful?

c++ c++11 enums

std::array aggregate initialization requires a confusing amount of curly braces

c++ c++11

std::map write/read from multiple threads

c++ c++11

Why is one expression constant, but not the other?

Is there a point to define move-only objects in c++11?

Should `constexpr` functions also be `noexcept`?

c++ c++11

gcc vs clang behavior on partial specialization with variadic arguments plus extra argument of same type

Templated Class Friend Operator Member Function

c++ templates c++11 friend

Final enum classes in C++11

c++ c++11 enums final

Using Eigen 3.3 in a CUDA kernel

c++ c++11 cuda eigen3

What performance can I expect from std::fill_n(ptr, n, 0) relative to memset?

Is this considered valid c++11 or c++14? Or is gcc/clang getting it wrong?

conversion from nullptr_t to bool: valid or not?

SFINAE : Know if a function already exist or no

c++ c++11 sfinae

Passing the "this" pointer to other class/function in destructor

PyBind11 Global-Level Enum

c++11 enums pybind11