Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Changing boost::scoped_ptr to std::unique_ptr

deduce entire vector space at compile time

Making a private inherited inner template public via a using directive

Unusual behavior with auto while traversing a dynamic vector

c++ c++11 vector iterator auto

How can I redirect a std::ofstream to std::cout?

c++ c++11 stl cout ofstream

What guarantees does C++ make about the ordering of character literals?

How do I transfer ownership of a unique_ptr when returning a tuple?

c++ c++11 unique-ptr

Implicit use of destructor

c++ c++11

Why defining a destructor deletes the implicitly defined move assignment operator?

Which Clang warning is equivalent to Wzero-as-null-pointer-constant from GCC?

Adapting a template-provided base class

c++ c++11

Do tuple implementations have an optimized layout?

Compile time elimination of virtual tables?

c++ oop c++11

gcc "overflow in expression" while equivalent equivalent expression works fine

c++ c++11 gcc

How to remove the last character of a UTF-8 string in C++?

c++ string c++11 unicode utf-8

Protected variables naming and the standard

c++ c++11

Why doesn't future::wait() block

How to use unique_ptr with std::copy?

Unknown exception from std::promise

c++ c++11 promise c++14 future

Returning a lambda capturing a local variable

c++ c++11 lambda currying