Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++11 empty flag classes

c++ constructor c++11

Problems with shared_ptr<T[]> wrapping a dynamic array

c++ c++11 shared-ptr

Is it reasonably efficient to insert into an rvalue reference to a stream?

c++ c++11

Is ip::tcp::socket.close() thread safe?

c++11 boost-asio

How to initialize a struct of integers to zero? [duplicate]

c++ c++11

Iterating a parameter pack with variadic templates in c++

C++11 method template specialization for return type

force compiler to reveal type of a variable

enable_if with is_enum does not work

c++ c++11 sfinae

Why is second initialization allowed in C++11

c++ c++11 initialization

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