Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

pass lambda to function that accepts function with templated types

c++ templates c++11 lambda

c++ condition_variable wait_for predicate in my class, std::thread <unresolved overloaded function type> error

Why does decltype(declval<T>().func()) work where decltype(&T::func) doesn't?

How qml call static method from c++

c++11 qml qt5.6

Is va_list still used in C++? Or is it encouraged to use template<typename... T>?

c++ closure creation

c++ c++11 lambda closures c++14

ambiguous call of overloaded template with parameter (const T&, const T&) or (const char (&)[N], const char (&)[M])

std::promise<void> throws Unknown error, unless calling sleep

c++ c++11 gcc

Result of ternary operator on `int` and `float`

c++ c++11 language-lawyer

In C++11 threads, what guarantees does a std::mutex have about memory visibility?

Generating pseudo-random 16-bit integers

Need to check for nullptr when make_shared and make_unique is used?

c++ c++11 c++14 c++17

unable to get key_type from a map

c++ c++11

Why is there a sizeof... operator in C++0x?

c++ language-design c++11

std::transform and move semantics

c++ stl c++11

Can I use libcurls CURLOPT_WRITEFUNCTION with a C++11 lambda expression?

c++ lambda c++11 libcurl

Can I pass value of forward declared enum?

using one random engine for multi distributions in c++11

c++ c++11 random

Casting shared_ptr<T> to shared_ptr<void>

c++ casting c++11 shared-ptr

Is this correct way to combine std::generate_n and std::back_inserter?

c++ stl c++11