Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

What is the value of is_nothrow_copy_assignable for a class with a throwing copy constructor and a noexcept by-value copy assignment?

Why does C++11 allow you to declare a local variable as thread_local? [duplicate]

Why nested bind can defer evaluation of the expression

c++ c++11

Brace-init-list and assignments

std::map emplace fails with explicit constructor

c++ c++11

static_assert and class templates

warning C4661:no suitable definition provided for explicit template instantiation request

Why it does not declare a reference type if 'auto' var is initialized using a function returning reference?

c++ c++11 auto

C++11: Is std::thread on linux depending on pthread library?

Copy ctor called instead of move ctor

Set GCC path in makefile

c++ c++11 gcc makefile gnu-make

Implementing rvalue references as parameters in function overloads

c++ c++11 c++17

Why gcc warns about narrowing conversion only for uniform initialization?

Default argument and empty list initialization

Why do I get a runtime error: Vector erase iterator outside range

c++ c++11 stl stdvector

Dynamic Dispatch to Template Function C++

c++ c++11 templates

std::hash specialisation for my own class and use it inside the class

c++ c++11

unpacking values of an array as parameters to a variadic function

What the benefits by using the template<int size> than dynamic allocate?

c++ c++11 render pbrt

Return static vector by reference is slow