Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Changing active member of union in constant expressions

Perfect forwarding fails when target is aggregate with array

Function forwarding argument and simply doing nothing

Did Visual Studio 2015 Update 3 Break Constructor Attributes?

Copying vector<shared_pt<T>> to vector<shared_ptr<const T>> (different cases) C++

c++ c++11 c++14

shared_ptr, unique_ptr, ownership, Am I overdoing it in this particular case?

c++ c++11 c++14 shared-ptr

Multiply variable number of arguments

c++ templates c++14

Difference in behaviour of max_element and minmax_element in C++ STL

c++ c++11 stl c++14

auto assignment in if clause

c++ c++11 c++14

thread_guard vs scoped_thread

c++ multithreading c++11 c++14

How to write a range-v3 action for random_shuffle?

c++ algorithm c++14 range-v3

In C++14 can a constexpr member change a data member?

Pretty sfinae with static_assert

c++ templates c++14 sfinae

Container of struct containing primitive type, zero initialized?

c++ c++14

Use of constexpr and const in reference definition

Since which version of GCC is C++14 supported?

MSVC can't evaluate a constexpr function inside enable_if

c++ visual-c++ c++14

Forward declaration of a class nested in in a class template, is it legal?

Spliting component in Entity-Component-System demands too much refactoring

How does binary I/O of POD types not break the aliasing rules?