Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

use the TYPE from the tempate type argument list

MSVC2015 decltype parameter type in overloaded template function

c++ c++11

Moving a shared_ptr to the method called on the object the shared_ptr points to

c++ c++11 c++14 shared-ptr c++17

Time complexity of unordered_set<int> find method

Can expression using pointers causing unspecified (not undefined!) behaviour be used in constexpr context?

Pointers to member as variadic template parameters

Requirements on std::forward_list::remove_if predicates

Filter a list of values at compile time with gnu++11 and no stdlib (Arduino environment)

c++ c++11 arduino

Selectively disable C++ Core Guidelines Checker for third party libraries

Explicitly deleted move constructor

Passing forwarding references to thread wrapper class

c++ multithreading c++11

Function argument evaluation order vs Lambda capture evaluation order

c++ c++11 c++14 move-semantics

What's the least possible denominator/divisor value?

c++ c++11

Convert a 74-bit integer to base 31

Placing a namespace-scope file-local (.cpp) constant in an anonymous namespace or not

Why can not I use operator[] for std::unordered_map<std::pair<int,int>, int> but for same key-value pair of `std::map`? [duplicate]

How to detect if a function exists?

Conditionally enable non-template function c++

c++ c++11 mpi portability

Double envoking of copy-constructor of a class passed into std::vector::emplace_back [duplicate]

c++ c++11

Why arguments moved twice when constructing std::thread

c++ c++11 move stdthread