Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is there a smart pointer type that requires multiple owners?

c++ c++11 smart-pointers

How to see code coverage in Clion

constexpr and virtual

c++ c++11

using shared_ptr to std::vector in range-based for loop

auto return type not deducing reference

Can I use a custom allocator for std::array for secure cryptographic keys?

How to dispatch between assert() and static_assert(), dependend if in constexpr context?

Using GCC's C++0x mode in production?

c++ gcc c++11 mingw

std::unique_ptr and pointer-to-pointer

com c++11

Position of a type in a variadic template parameter pack

ISO C++ standard draft

c++ standards c++11

Strange case of C++11 overload resolution

Why is not deleting an object that has a destructor with a side effect undefined behavior in C++11?

r-value reference return type semantics?

c++ c++11 rvalue-reference

std::thread problems

C++11 static_assert: Parameterized error messages

Making function template parameter unsigned in C++11

c++ templates c++11

Can you generate a variadic template pack from a size and its content?

constexpr vs template for compile-time maths functions?

what is the difference between forward<T>(a) and (T&&)(a)

c++ c++11