Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Return value optimization of tuple/tie

c++ c++11 stdtuple rvo

Why can an aggreggate struct be brace-initialized, but not emplaced using the same list of arguments as in the brace initialization?

c++ c++11 aggregate emplace

Necessity of forward-declaring template functions

Implicit generated members and noexcept

c++ c++11 language-lawyer

Is `std::function` allowed to move its arguments?

c++ function c++11 bind

If function f() returns a pointer, which is correct: auto* v = f() OR auto v = f()?

c++ c++11 auto

Difference between C++ object construction methods

c++ string c++11 constructor

How do you use C++0x raw strings with GCC 4.5?

c++ g++ c++11

Does the WKWYL optimization in make_shared<>() introduce a penalty for some multithreading applications?

Why doesn't C++11 implicitly convert lambdas to std::function objects?

Why does reading a record struct fields from std::istream fail, and how can I fix it?

c++ parsing c++11 iostream

const reference to member of temporary object [duplicate]

C++11 atomics and intrusive shared pointer reference count

c++ c++11 shared-ptr atomic

How to guarantee order of argument evaluation when calling a function object?

c++ c++11

how to specify vc11 lambda calling convention

Event notification without mutex

Why unique-ptr doesn't check base class to virtual destructible?

Returning a const pointer to a const data member and the 'auto' keyword. A bit confused

Where is std::copy_exception defined?

decltype of function parameter [duplicate]