Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is std::promise<T> thread-safe?

c++ c++11 asynchronous promise

Should I always use std::move in a constructor?

c++ c++11 move-semantics

different compare signature for std::upper_bound and std::lower_bound

trying to distinguish between different kinds of rvalues - literals and non-literals

Why does std::map emplace need a copy constructor on gcc?

c++ c++11 gcc

C++11 - lambda function pass vector in capture and modify it

c++11 lambda

C++11 default class member initialization with initializer list , simultaneously

c++ c++11

How to measure the correct size of non-ASCII characters?

Aggregate initialization does not uphold constructor access [duplicate]

Is it possible to remove dispatch_once in Objective-C++?

Wrong overload called when constructing from initializer_list inside parentheses

Parameter Pack Matching Rules with Multiple Packs

Is this hazard pointer example flawed because of ABA issue?

Empty initializer list as argument doesn't call default constructor

Insert a sorted range into std::set with hint

c++ c++11 stdset

How can I check if a templated method was called at compile-time?

compile time check that trait specialization has unique id

c++ c++11

Is there a c++ trait to find the most restricted type between two types in C++?

c++ c++11 templates typetraits

Thread synchronization problem with c++ std::atomic variables

c++11 atomic

Call a function with std::function as argument with a lambda

c++ c++11