Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Change (use older) c++ version in Visual Studio [duplicate]

Why is there no std::transform_n function in the C++ standard library?

c++ c++11 stl-algorithm

Does constexpr in pointers make a difference

Lazy-constructed shared_ptr

c++ c++11 std wrapper shared-ptr

Why is there no specialisation for std::shared_ptr<T[]>?

c++ c++11

How to tell a library was compiled using C++11

c++ c++11 shared-libraries

Why can't I overload C++ conversion operators outside a class, as a non-member function?

C++11 how to observe memory order in atomic::store and atomic::load

c++ c++11 atomic

using typedef in template instantiation and extern template declaration

Is list-initialization an implicit conversion?

Move std::vector to std::deque in C++11

Error "sigemptyset was not declared in this scope" when using C+11 and Newlib

c++ c++11 cygwin signals newlib

Static const data member defined in another file

c++ c++11 language-lawyer

What is the difference between eof(), fail(), bad(), and good() in C++ streams?

c++ c++11 io

std::sort by unary mapping

c++ sorting c++11 std

Removing the void specializations for std::future and std::promise

c++ c++11 c++14 future c++17

Q: Template class that takes either a normal type or a template template argument

Does using C++ Lambda functions as slots in Qt help to preserve binary compatibility of a library?

c++ qt c++11 lambda qt5

Using C++ shared pointer's aliasing constructor with an empty shared pointer

c++ c++11 language-lawyer

Is it safe to wait for asynchronous work by joining in the destructor?