Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

creating unordered_set with lambda

c++11 get type of first (second, etc...) argument, similar to result_of

c++ templates c++11

Error on implicit cast from std:unique_ptr to bool

C++11 range based loop: How does it really work

c++ c++11

std::regex constructor throws an exception

c++ regex c++11

Can I define a function pointer pointing to an object of std::function type?

c++ c++11 lambda

std::move(T&&) and temporary object. Where is the temporary coming from?

c++ c++11

Why does "n&1 == 0" always return false? [duplicate]

c++ c c++11

What is the role of **std::setprecision()** without **std::fixed** in c++?

c++ c++11 stl precision iomanip

How to define string literal with character type that depends on template parameter?

c++ c++11 string-literals

Achieving clean lambda functions in C++11

c++ templates lambda c++11

How does the compiler know to move local variables?

c++ c++11 move-semantics

Waiting for an atomic_bool

Is use of std::forward with auto&& the right thing to do

c++ c++11

Why do I get a compilation error?

c++ templates c++11

Why do uninitialized objects of built-in type defined inside a function body have undefined value?

Will two atomic writes to different locations in different threads always be seen in the same order by other threads?

Are () and {} always equivalent when used for initialization with "new"?

What does `class template Example<int>;` statement mean with C++11?

c++ c++11 templates

Is ++ atomic for std::atomic<int>

c++11 atomic