Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

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?

User-defined literal string: compile-time length check

Unpack an array of arguments for a function call

Why does compiler accept initialization of a float with a long double literal?

c++ c++11

Why can I std::bind successfully with the wrong parameters?

c++ c++11 stdbind

What are the exact inter-thread reordering constraints on mutex.lock() and .unlock() in c++11 and up?

C++0x atomic implementation in c++98 question about __sync_synchronize()

c++ templates c++11 atomic

min and perfect forwarding

Perfect forwarding - through virtual functions

c++11

Return value optimization of values unpacked from std::tuple