Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

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

What are the name lookup and type simplification rules for trailing return types?

Can a smart pointer be optimized away?

c++ c++11 smart-pointers

Custom container traversal with range-based for loop

c++ c++11 traversal

Practical difference between a struct with only operator() and a normal function

c++ c++11 c++14

Calculating std::hash using different compilers

c++ c++11

Should I write noexcept only to constructors and move operators?

c++ c++11

C++ : has_trivial_X type traits

c++ types c++11

is there a way to use c++0x at xcode? I want to use gcc 4.4 or greater

c++ iphone xcode c++11

Is there a way to deduce the signature of a lambda as an mpl sequence?

Accessing a class template parameter type inside a member function with a lambda fails

Should I make lambdas static?

lambda c++11

What are lookup rules when calling function from lambda?

c++ c++11