Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to mark a constexpr function's parameter unused?

c++ c++11 constexpr

Using the mongodb cxx driver in a cmake c++ project

Does the C++ standard mandate an encoding for wchar_t?

c++ c++11 unicode wchar-t

Making shared_ptr lose ownership of memory

template deduction failed in vector

c++ c++11

C++: Virtual functions that need to call the same code?

c++ inheritance c++11

C++11 auto and function return types

c++ c++11 type-inference

How do I sort efficiently a quadruple structs in C++?

unique_lock across threads?

c++ c++11 concurrency locking

How to handle failed methods: by using exceptions or making the methods return bool?

c++ c++11

Creating a temporary of decltype

Is std::vector<T>::resize( n, val ) sufficient for initialisation?

How to use boost::split with boost::string_ref in boost 1.55

c++11 boost

std::thread constructor with no parameter

C++ Constructor: Perfect forwarding and overload

Reading and writing a std::vector into a file correctly with iterators

c++ c++11

Why can't I have an enum as the underlying type of another enum?

c++ c++11 enums subclassing

Do the following two declarations involving automatic return type work the same? If so, why?

c++ c++11 c++14

c++0x inherited constructor in templates

Questions about the move assignment operator