Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

const_cast setting a rule and breaking it for function const

c++ c++11 const-cast

How to deal with extra characters read into ASIO streambuf?

c++ c++11 boost boost-asio

C++ Pimpl Idiom Incomplete Type using std::unique_ptr

How does std::begin deduce a type for braced-init-list?

c++ c++11

How to improve std::vector parameter passing (move semantics?)

c++ c++11 move-semantics

unordered_map iteration order for the same key

c++ c++11 c++14

How to a mark a function as invalidating its argument

Is there and neat equivalent to view a member function/variable?

c++ c++11 boost-range range-v3

decltype(auto) in member function ignores invalid body, decltype(expr) fails

c++ templates c++11 c++14

C++11 unique_ptr array and constructor parameters

c++11 stl smart-pointers

Should std::current_exception return non-null from catch block in a class's destructor

c++ c++11 visual-c++ exception

std::array as a parameter in virtual function

c++ arrays c++11

Compilation issue with instantiating function template

Using char16_t, char32_t etc without C++ 11?

c++ c++11

C++ constexpr auto member function. Clang issue?

c++ c++11 auto c++14 constexpr

Why did the C++ designers choose not to allow non-member operator()()?

c++ c++11 gcc g++ c++14

Specifying a Deleter for std::shared_ptr that works on all objects of a particular type or its derived types

Mapping const char * to duck-typed T at compile-time or run-time

c++ templates c++11

What are reference qualifiers for functions? [duplicate]

c++ c++11

Passing a function and arguments to a thread

c++ multithreading c++11