Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Which compiler(s) have the most advanced support for the current state of C++0x? [duplicate]

c++ c++11

Operator overload which permits capturing with rvalue but not assigning to

passing heavy objects C++0x

Under what conditions should I be thinking about implementing a move constructor and a move operator?

Is there an easy way to implement AutoResetEvent in C++0x?

Is it a memory leak to push_back a pointer into a vector of pointers?

Cast an std::array to another data type at compile time?

Is there a way to use delegating constructors in Visual Studio 2012?

Marking function as virtual causes compiler error with unique_ptr

g++ vs intel/clang argument passing order?

Can I reuse an rvalue reference parameter to return an rvalue reference?

std::shared_ptr not working with range for

c++ for-loop c++11 shared-ptr

Sort objects in descending order when the < comparator is defined?

c++ sorting c++11 comparator

Why don't the compiler take the namespace name when the inner scope ones don't work?

c++ visual-c++ gcc c++11

std::queue should I shrink to fit? [closed]

c++ c++11

Can std::async call std::function objects?

Does C++11 re-initialize initialized member fields?

c++ c++11

what is the difference between using ATOMIC_FLAG_INIT and std::atomic_flag::clear

c++ c++11 atomic

Why is it not efficient to use a single assignment operator handling both copy and move assignment?

Compile-time recursive function to compute the next power of two of an integer?