Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is it possible to move an std::array into a std::vector?

Assign static constexpr class member to runtime variable

What can be said about the value of fundamental type members of moved from object during move construction?

Efficiently remove last element from std::list

c++ list c++11 stl std

Checking if iterator is not assigned to item when there is no specific container

c++ c++11 vector

Initializing multiple references with std::tie

c++ c++11

static_assert in for-init-statement of the for statement

c++ c++11 language-lawyer

How to do a conversion from enum to type (and use as it in a template) in C++?

c++ templates c++11 enums

Why does std::queue use std::dequeue as underlying default container?

c++ c++11 stl queue stddeque

Does this constexpr virtual function technique violate any C++11/C++14 rule?

C++ why the type of parameter of atomic_load is pointer instead of reference?

c++ c++11 stl language-lawyer

Sleep affecting which virtual member function is called by std::thread?

c++ multithreading c++11

Is fabsf part of the std namespace in C++11?

c++ c++11 cmath

Why is it illegal to bind an r-value to a const l-value reference in special member functions?

Template type deduction of reference

c++ templates c++11

Reducing template complexity in C++

Is it possible to do the following with auto in C++0x?

c++ class c++11 type-inference

C++ Lambdas, Capturing, Smart Ptrs, and the Stack: Why Does this Work?

What are the consequences of ignoring narrowing conversions in C++0x

c++ g++ c++11 narrowing

SFINAE differentiation between signed and unsigned

c++ templates c++11 sfinae