Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is std::atomic_flag static initialization thread safe in Visual Studio 2012?

C++11 threads in class

stringstream unsigned input validation

c++ validation c++11

Why some types does not work with uniform initialization syntax?

Where are the closure's captured variables stored?

c++ c++11 lambda

C++11 lambda doesn't take const variable by reference, why?

c++ c++11 lambda g++ clang++

Mingw g++ does not recognize off_t when compiling with c++11

c++ c++11 mingw mingw32

Atomic Compare Operator (No swap)

How to wrap a templated function to work on const and non-const data

c++ c++11 constants

Can a C++11 lambda capture a file scope variable?

c++ c++11 lambda

C++11 lockless queue using std::atomic (multi writer, single consumer)

Clang & GCC misdeducing template parameters

Count the consecutive zero bits (trailing) on the right in parallel: an explanation?

C++11 regex end-of-line doesn't match

c++ regex c++11

Need help understanding this text extracted from B.Stroustrup's new book

Is my interpretation correct about n3797 8.5.3/5?

Derived class of Move constructor confusion

c++ c++11

What c++11 paradigm should I use to minimize memory-usage and minimize copying?

Why doesn't std::move() of unique_ptr from list<unique_ptr> really move it?

variadic template arguments: can I pick reference vs value depending on type?