Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Inconsistency in function type decay between variadic/non-variadic templates?

force a specific constructor used solely in certain code, nowhere else

c++ unit-testing c++11

What can I do with an std::exception_ptr other than rethrowing it

Is there an STL comparator for std::set (or std::map) with shared_ptr keys that provides value-based lookups? What exactly does std::owner_less do?

Why does the C++ standard specifically grant leeway regarding memory layout of class data members with different access specifiers?

c++ c++11 standards

Default move constructor taking a const parameter

std::round is not a member of std on android

c++ qt c++11 android-ndk

C++ - Definition of 2d matrices of type std::array

c++ c++11 matrix stdarray

std::move into static_pointer_cast: Why doesn't static_pointer_cast have an rvalue reference overload?

c++ c++11

How can I know if C++ compiler make thread-safe static object code?

size_t and memory allocation

c++ c++11 memory-management

Reverse iterators for C arrays

c++ c++11 stl iterator

Wrong pack expanded in variadic template

Is there a difference between these ways of initialising a C array in C++?

Can std::transform or std::generate without ExecutionPolicy be parallel?

Are pointers to members of an anonymous union equal?

c++ c++11 pointers unions

copy initialization - conversion from 'int' to non-scalar type

Lambda in default argument position can't access friend members. Is this a compiler bug?

How do I know if object passed as r-value will get moved?

How to ensure moving without impeding RVO?

c++ c++11 language-lawyer rvo