Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

tr1::mem_fn and tr1::bind: on const-correctness and overloading

What is the rationale to not allow overloading of C++ conversions operator with non-member functions

Can I add Boost source+header files to my own (Open Source) project? [closed]

c++ boost c++11 licensing

How to dump candidates in function overload resolution?

C++0x template function object inference

How do non-intrusive smart pointers behave with respect to inheritance and multiple inheritance?

CRTP fails w/ decltype

gnu c++0x backwards compatibility status - can I just switch it on and go?

The C++11 way of initializing data members from arguments

c++ initialization c++11

Why are C++0x rvalue reference not the default?

c++ c++11 lvalue rvalue

Concurrent write to different buckets in unordered_map (C++)?

Variadic template as template parameter: deduction works with GCC but not with Clang

Order of evaluation of elements in list-initialization

Call method inside lambda expression

c++ lambda c++11

C++11: The range-based for statement: "range-init" lifetime?

c++ c++11

transform_primary() and collate_byname()

c++ c++11 locale

User defined literal arguments are not constexpr?

What are "rvalue references for *this" for?

c++ c++11 rvalue-reference

With std::vector, why is &vec[0] undefined behavior, but vec.data() safe?

What is the difference between std::condition_variable and std::condition_variable_any?