Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++ Alias for list of template parameters

c++ c++11 templates using

Is it possible to pass a brace-enclosed initializer as a macro parameter?

Why standard doesn't require std::mutex::~mutex synchronizes-with with the latest unlock

c++ c++11 mutex

Has C++11 changed requirements for elements of STL containers, and how?

c++ stl c++11

std::unordered_map::emplace behavior with no move/copy constructor

Can Different Lambdas Decay to the Same Function Pointer?

Couldn't deduce template paramter even if it is known at compile time

Assign a dynamically allocated array in a constructor to a unique smart pointer member variable

c++ c++11 smart-pointers

Move assignment operator not being called

c++ c++11 move

C++11: does unordered_map/set guarantees traversing order as insert order?

c++ c++11 insert unordered-map

c++ type trait to detect if any function argument is reference

Can anybody provide a MISRA C++ compliant 'offsetof' macro/template/function that works with static_assert?

c++ c++11 misra

Error spotted in C++ Primer 5th edition shared_ptr<int>

Is there a way to suppress Intellisense errors when using C++11 features specific to November 2012 CTP?

What is the reason for providing a default value of zero for SFINAE testers?

GoogleTest with Templates

Can attributes be applied to templates?

templates c++11

How can I properly capture an Obj-C block within a c++ lambda call?

What is the C++ 11 atomic library equivalent of Java's AtomicMarkableReference<T>

java c++ c++11 atomic lock-free