Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is codecvt not supported by Clang or GCC?

gcc c++11 unicode clang codecvt

What is a scope for lambda function in C++11 (delegates)

c++11 lambda delegates scope

Indexing Matrix in Boost

c++ c++11 boost

Is sizeof('ab') equal to sizeof(int) in C++?

Make sure only Smartpointers are build

c++ qt c++11

Prevent wrapping lambda in std::function with different types

c++ c++11

How to catch the address of the functor generated for a lamda expression?

c++ c++11 c++14

Disallow copy constructor but allow implicit copy from other type

Disambiguating argument-less function calls in variadic class hierarchies

c++ templates c++11 variadic

C++ copy constructor needed although not used

c++ c++11 move-semantics

What are the differences between std::decay and pass-by-value?

c++ c++11

Is it possible to omit template parameter in `std::forward`?

c++ c++11 templates

Ensure return type of templated generic parameter

c++ templates c++11 sfinae

std::thread::thread attempting to reference a deleted function

Storing lambdas as members confusion

std::transform to copy one array of struct to another

c++ c++11 c++14

returning a string from a function

Invalid conversion from BaseClass* to DerivedClass*

c++ inheritance c++11

Can I delete a std::function object from within its target function during invocation? [duplicate]

c++ c++11 lambda std-function

In a C/C++ program, can you define a global variable that is not accessible by a certain function?

c++11