Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why this code is fast for char *?

c++ c++11

Overload resolution: assignment of empty braces

Non-last default template arguments for function templates

Compile time error if brace-closed list is the wrong size for class constructor

Match template parameter to template type

c++ templates c++11

Why using 0 as default non type template parameter for void* is not allowed

c++ templates c++11 c++14 void

Class with std::array of objects without default constructors

Variadic variadic template template parameters

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